From 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3 Mon Sep 17 00:00:00 2001 From: Shinya Kuribayashi Date: Sun, 19 Oct 2008 12:08:50 +0900 Subject: net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init as a part of ongoing eth_initialize cleanup work. The function ret value is also fixed as it should be negative on fail. Signed-off-by: Shinya Kuribayashi Signed-off-by: Ben Warren --- cpu/mips/au1x00_eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpu/mips/au1x00_eth.c') diff --git a/cpu/mips/au1x00_eth.c b/cpu/mips/au1x00_eth.c index 8ddc06a..6272a3a 100644 --- a/cpu/mips/au1x00_eth.c +++ b/cpu/mips/au1x00_eth.c @@ -283,7 +283,7 @@ int au1x00_enet_initialize(bd_t *bis){ if ((dev = (struct eth_device*)malloc(sizeof *dev)) == NULL) { puts ("malloc failed\n"); - return 0; + return -1; } memset(dev, 0, sizeof *dev); -- cgit v1.1