mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
at91_emac.c: fix 'Warning: eth device name has a space!'
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>
This commit is contained in:
parent
d628866474
commit
4b8d77bb93
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue