mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-12 03:58:47 +01:00
Blackfin: bfin_mac: remove space from name
Some commands (like 'mii') use this name to select devices, but they break when those names contain spaces. So drop the space from the Blackfin EMAC driver. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
787e343b91
commit
94060a158f
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ int bfin_EMAC_initialize(bd_t *bis)
|
|||
hang();
|
||||
|
||||
memset(dev, 0, sizeof(*dev));
|
||||
sprintf(dev->name, "Blackfin EMAC");
|
||||
strcpy(dev->name, "bfin_mac");
|
||||
|
||||
dev->iobase = 0;
|
||||
dev->priv = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue