mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
net,fec: Shorten device name as done for other drivers
After discussion on the ML it is suggested to drop unrequired and not useful characters from the device name. This patch changes the name for the fec_mxc driver from "FEC_MXC" to "FEC". Signed-off-by: Stefano Babic <sbabic@denx.de> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
b417260d87
commit
f699fe1e1f
1 changed files with 1 additions and 1 deletions
|
@ -743,7 +743,7 @@ static int fec_probe(bd_t *bd)
|
|||
writel(0x05ee0024, &fec->eth->r_cntrl); /* FIXME 0x05ee0004 */
|
||||
fec_mii_setspeed(fec);
|
||||
|
||||
sprintf(edev->name, "FEC_MXC");
|
||||
sprintf(edev->name, "FEC");
|
||||
|
||||
miiphy_register(edev->name, fec_miiphy_read, fec_miiphy_write);
|
||||
|
||||
|
|
Loading…
Reference in a new issue