summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-08-19 15:00:06 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2009-10-13 10:57:40 +0200
commita3a59271109c621072f8cc30af4a3762cae769fb (patch)
treed4826e2bf34a6add54515dd124ca8a85bf91057a /include
parent8fe37b4e2eb20ce789a8b5194b14b2818aae7402 (diff)
downloadbarebox-a3a59271109c621072f8cc30af4a3762cae769fb.tar.gz
barebox-a3a59271109c621072f8cc30af4a3762cae769fb.tar.xz
net: remove switch/case in NetLoop()
Instead of having a big switch/case for every protocol, do the right things in the individual functions before callong NetLoop(). Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h
index 86c3340005..cdab158dde 100644
--- a/include/net.h
+++ b/include/net.h
@@ -318,7 +318,7 @@ extern int NetTimeOffset; /* offset time from UTC */
int NetLoopInit(proto_t);
/* Do the work */
-int NetLoop(proto_t);
+int NetLoop(void);
/* Shutdown adapters and cleanup */
void NetStop(void);