dect
/
linux-2.6
Archived
13
0
Fork 0

mdio: fix non-constant printk warnings

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Stephen Hemminger 2009-02-26 10:19:36 +00:00 committed by David S. Miller
parent 6a64cd64c0
commit 036b66879a
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ int mdiobus_register(struct mii_bus *bus)
bus->dev.parent = bus->parent;
bus->dev.class = &mdio_bus_class;
bus->dev.groups = NULL;
dev_set_name(&bus->dev, bus->id);
dev_set_name(&bus->dev, "%s", bus->id);
err = device_register(&bus->dev);
if (err) {