diff options
author | Marek Vasut <marex@denx.de> | 2014-01-28 00:19:47 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-02-06 02:51:52 +0100 |
commit | 0b2d3f209a33648a9d235af3927c113a7cfa4c29 (patch) | |
tree | ce90c2a25e90b7c2bf4169d0528e3e1c964723cc /drivers/net/npe/IxOsalOsThread.c | |
parent | c75692d3625c415e0e3fe982bd72a3300d828465 (diff) | |
download | u-boot-imx-0b2d3f209a33648a9d235af3927c113a7cfa4c29.zip u-boot-imx-0b2d3f209a33648a9d235af3927c113a7cfa4c29.tar.gz u-boot-imx-0b2d3f209a33648a9d235af3927c113a7cfa4c29.tar.bz2 |
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/IxOsalOsThread.c')
-rw-r--r-- | drivers/net/npe/IxOsalOsThread.c | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/drivers/net/npe/IxOsalOsThread.c b/drivers/net/npe/IxOsalOsThread.c deleted file mode 100644 index b3caae1..0000000 --- a/drivers/net/npe/IxOsalOsThread.c +++ /dev/null @@ -1,74 +0,0 @@ -/** - * @file IxOsalOsThread.c (eCos) - * - * @brief OS-specific thread implementation. - * - * - * @par - * IXP400 SW Release version 1.5 - * - * -- Copyright Notice -- - * - * @par - * Copyright 2001-2005, Intel Corporation. - * All rights reserved. - * - * @par - * SPDX-License-Identifier: BSD-3-Clause - * @par - * -- End of Copyright Notice -- - */ - -#include "IxOsal.h" - -/* Thread attribute is ignored */ -PUBLIC IX_STATUS -ixOsalThreadCreate (IxOsalThread * ptrTid, - IxOsalThreadAttr * threadAttr, IxOsalVoidFnVoidPtr entryPoint, void *arg) -{ - return IX_SUCCESS; -} - -/* - * Start thread after given its thread handle - */ -PUBLIC IX_STATUS -ixOsalThreadStart (IxOsalThread * tId) -{ - /* Thread already started upon creation */ - return IX_SUCCESS; -} - -/* - * In Linux threadKill does not actually destroy the thread, - * it will stop the signal handling. - */ -PUBLIC IX_STATUS -ixOsalThreadKill (IxOsalThread * tid) -{ - return IX_SUCCESS; -} - -PUBLIC void -ixOsalThreadExit (void) -{ -} - -PUBLIC IX_STATUS -ixOsalThreadPrioritySet (IxOsalOsThread * tid, UINT32 priority) -{ - return IX_SUCCESS; -} - -PUBLIC IX_STATUS -ixOsalThreadSuspend (IxOsalThread * tId) -{ - return IX_SUCCESS; - -} - -PUBLIC IX_STATUS -ixOsalThreadResume (IxOsalThread * tId) -{ - return IX_SUCCESS; -} |