Skip to content
Snippets Groups Projects
Commit 4b8d77bb authored by Andreas Bießmann's avatar Andreas Bießmann Committed by Reinhard Meyer
Browse files

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: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
parent d6288664
Branches
Tags
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment