projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d628866
)
at91_emac.c: fix 'Warning: eth device name has a space!'
author
Andreas Bießmann
<andreas.devel@googlemail.com>
Tue, 7 Sep 2010 17:10:33 +0000
(19:10 +0200)
committer
Reinhard Meyer
<u-boot@emk-elektronik.de>
Tue, 5 Oct 2010 14:58:55 +0000
(16:58 +0200)
This patch also removes conditional nameing of at91_emac driver whether it's
connection to PHY is RMII or MII.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
drivers/net/at91_emac.c
patch
|
blob
|
history
diff --git
a/drivers/net/at91_emac.c
b/drivers/net/at91_emac.c
index d82459b1ce9c5aef4ce1913d787a2fd72b69a9cf..009a275f66864dd259832ee1b0937ddc013a53db 100644
(file)
--- a/
drivers/net/at91_emac.c
+++ b/
drivers/net/at91_emac.c
@@
-500,11
+500,7
@@
int at91emac_register(bd_t *bis, unsigned long iobase)
memset(emacfix, 0, sizeof(emac_device));
memset(dev, 0, sizeof(*dev));
-#ifndef CONFIG_RMII
- sprintf(dev->name, "AT91 EMAC");
-#else
- sprintf(dev->name, "AT91 EMAC RMII");
-#endif
+ sprintf(dev->name, "emac");
dev->iobase = iobase;
dev->priv = emacfix;
dev->init = at91emac_init;