diff options
author | Wolfgang Denk <wd@denx.de> | 2008-03-26 00:52:10 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-26 00:52:10 +0100 |
commit | aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855 (patch) | |
tree | 4c53121606075b464118742843bf99bc7ab79652 /drivers/net/ne2000.c | |
parent | 6525489323e5ab88cda947b4bc5a228ee624a75c (diff) | |
download | u-boot-imx-aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855.zip u-boot-imx-aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855.tar.gz u-boot-imx-aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855.tar.bz2 |
Coding Style cleanyp; update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'drivers/net/ne2000.c')
-rw-r--r-- | drivers/net/ne2000.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/ne2000.c b/drivers/net/ne2000.c index abf910c..99baeea 100644 --- a/drivers/net/ne2000.c +++ b/drivers/net/ne2000.c @@ -5,7 +5,6 @@ Based on sources from the Linux kernel (pcnet_cs.c, 8390.h) and eCOS(if_dp83902a.c, if_dp83902a.h). Both of these 2 wonderful world are GPL, so this is, of course, GPL. - ========================================================================== dev/if_dp83902a.c @@ -70,9 +69,7 @@ Add SNMP ####DESCRIPTIONEND#### - ========================================================================== - */ #include <common.h> @@ -210,7 +207,8 @@ dp83902a_start(u8 * enaddr) dp->running = true; for (i = 0; i < ETHER_ADDR_LEN; i++) { /* FIXME */ - //*((vu_short*)( base + ((DP_P1_PAR0 + i) * 2) + 0x1400)) = enaddr[i]; + /*((vu_short*)( base + ((DP_P1_PAR0 + i) * 2) + + * 0x1400)) = enaddr[i];*/ DP_OUT(base, DP_P1_PAR0+i, enaddr[i]); } /* Enable and start device */ @@ -218,7 +216,6 @@ dp83902a_start(u8 * enaddr) DP_OUT(base, DP_TCR, DP_TCR_NORMAL); /* Normal transmit operations */ DP_OUT(base, DP_RCR, DP_RCR_AB); /* Accept broadcast, no errors, no multicast */ dp->running = true; - } /* |