diff options
Diffstat (limited to 'drivers/sh/maple/maple.c')
-rw-r--r-- | drivers/sh/maple/maple.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/sh/maple/maple.c b/drivers/sh/maple/maple.c index 4054fe93d6e4..c71bb4b4ce84 100644 --- a/drivers/sh/maple/maple.c +++ b/drivers/sh/maple/maple.c | |||
@@ -368,10 +368,8 @@ static void maple_attach_driver(struct maple_device *mdev) | |||
368 | /* Do this silently - as not a real device */ | 368 | /* Do this silently - as not a real device */ |
369 | function = 0; | 369 | function = 0; |
370 | mdev->driver = &maple_unsupported_device; | 370 | mdev->driver = &maple_unsupported_device; |
371 | sprintf(mdev->dev.bus_id, "%d:0.port", mdev->port); | 371 | dev_set_name(&mdev->dev, "%d:0.port", mdev->port); |
372 | |||
373 | } else { | 372 | } else { |
374 | |||
375 | matched = | 373 | matched = |
376 | bus_for_each_drv(&maple_bus_type, NULL, mdev, | 374 | bus_for_each_drv(&maple_bus_type, NULL, mdev, |
377 | maple_check_matching_driver); | 375 | maple_check_matching_driver); |
@@ -381,8 +379,9 @@ static void maple_attach_driver(struct maple_device *mdev) | |||
381 | dev_info(&mdev->dev, "no driver found\n"); | 379 | dev_info(&mdev->dev, "no driver found\n"); |
382 | mdev->driver = &maple_unsupported_device; | 380 | mdev->driver = &maple_unsupported_device; |
383 | } | 381 | } |
384 | sprintf(mdev->dev.bus_id, "%d:0%d.%lX", mdev->port, | 382 | |
385 | mdev->unit, function); | 383 | dev_set_name(&mdev->dev, "%d:0%d.%lX", mdev->port, |
384 | mdev->unit, function); | ||
386 | } | 385 | } |
387 | 386 | ||
388 | mdev->function = function; | 387 | mdev->function = function; |
@@ -789,7 +788,7 @@ struct bus_type maple_bus_type = { | |||
789 | EXPORT_SYMBOL_GPL(maple_bus_type); | 788 | EXPORT_SYMBOL_GPL(maple_bus_type); |
790 | 789 | ||
791 | static struct device maple_bus = { | 790 | static struct device maple_bus = { |
792 | .bus_id = "maple", | 791 | .init_name = "maple", |
793 | .release = maple_bus_release, | 792 | .release = maple_bus_release, |
794 | }; | 793 | }; |
795 | 794 | ||