summaryrefslogtreecommitdiff
path: root/drivers/net/npe/include/IxQMgrQAccess_p.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2014-01-28 00:19:47 +0100
committerMarek Vasut <marex@denx.de>2014-02-06 02:51:52 +0100
commit0b2d3f209a33648a9d235af3927c113a7cfa4c29 (patch)
treece90c2a25e90b7c2bf4169d0528e3e1c964723cc /drivers/net/npe/include/IxQMgrQAccess_p.h
parentc75692d3625c415e0e3fe982bd72a3300d828465 (diff)
ARM: NET: Remove the IXP NPE ethernet driver
This driver is no longer used, remove it. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Albert Aribaud <albert.u.boot@aribaud.net> Cc: Michael Schwingen <michael@schwingen.org> Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'drivers/net/npe/include/IxQMgrQAccess_p.h')
-rw-r--r--drivers/net/npe/include/IxQMgrQAccess_p.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/drivers/net/npe/include/IxQMgrQAccess_p.h b/drivers/net/npe/include/IxQMgrQAccess_p.h
deleted file mode 100644
index 363622fba6..0000000000
--- a/drivers/net/npe/include/IxQMgrQAccess_p.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/**
- * @file IxQMgrQAccess_p.h
- *
- * @author Intel Corporation
- * @date 30-Oct-2001
- *
- * @brief QAccess private header file
- *
- *
- * @par
- * IXP400 SW Release version 2.0
- *
- * -- Copyright Notice --
- *
- * @par
- * Copyright 2001-2005, Intel Corporation.
- * All rights reserved.
- *
- * @par
- * SPDX-License-Identifier: BSD-3-Clause
- * @par
- * -- End of Copyright Notice --
-*/
-
-#ifndef IXQMGRQACCESS_P_H
-#define IXQMGRQACCESS_P_H
-
-/*
- * User defined header files
- */
-#include "IxQMgr.h"
-
-/*
- * Global variables declarations.
- */
-extern volatile UINT32 * ixQMgrAqmIfQueAccRegAddr[];
-
-/*
- * Initialise the Queue Access component
- */
-void
-ixQMgrQAccessInit (void);
-
-/*
- * read the remainder of a multi-word queue entry
- * (the first word is already read)
- */
-IX_STATUS
-ixQMgrQReadMWordsMinus1 (IxQMgrQId qId,
- UINT32 *entry);
-
-/*
- * Fast access : pop a q entry from a single word queue
- */
-extern __inline__ UINT32 ixQMgrQAccessPop(IxQMgrQId qId);
-
-extern __inline__ UINT32 ixQMgrQAccessPop(IxQMgrQId qId)
-{
- return *(ixQMgrAqmIfQueAccRegAddr[qId]);
-}
-
-/*
- * Fast access : push a q entry in a single word queue
- */
-extern __inline__ void ixQMgrQAccessPush(IxQMgrQId qId, UINT32 entry);
-
-extern __inline__ void ixQMgrQAccessPush(IxQMgrQId qId, UINT32 entry)
-{
- *(ixQMgrAqmIfQueAccRegAddr[qId]) = entry;
-}
-
-#endif/*IXQMGRQACCESS_P_H*/