aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/zorro/zorro.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2013-10-16 05:28:54 -0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2013-11-26 05:09:06 -0500
commit83b7bce3d390f15047e05a186bb4051536ee9dbc (patch)
tree651419d2486f0add87182dbdf50060a1f497dc59 /drivers/zorro/zorro.c
parent52182c758f7c9bc34dbee0dfdce13d356de50f03 (diff)
zorro: Let the driver core handle device enumeration
Filling in dev_name of the Zorro bus type and dev.id of each device allows the driver core to enumerate devices, so we don't have to do that ourselves. This changes the names of devices in sysfs from "%02x" to "zorro%u". Note that filling in dev.id is also needed to support MFD Zorro devices. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'drivers/zorro/zorro.c')
-rw-r--r--drivers/zorro/zorro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/zorro/zorro.c b/drivers/zorro/zorro.c
index 10c7f77aec08..450abf100f06 100644
--- a/drivers/zorro/zorro.c
+++ b/drivers/zorro/zorro.c
@@ -142,7 +142,7 @@ static int __init amiga_zorro_probe(struct platform_device *pdev)
142 142
143 zorro_autocon = bus->devices; 143 zorro_autocon = bus->devices;
144 bus->dev.parent = &pdev->dev; 144 bus->dev.parent = &pdev->dev;
145 dev_set_name(&bus->dev, "zorro"); 145 dev_set_name(&bus->dev, zorro_bus_type.name);
146 error = device_register(&bus->dev); 146 error = device_register(&bus->dev);
147 if (error) { 147 if (error) {
148 pr_err("Zorro: Error registering zorro_bus\n"); 148 pr_err("Zorro: Error registering zorro_bus\n");
@@ -180,9 +180,9 @@ static int __init amiga_zorro_probe(struct platform_device *pdev)
180 dev_err(&bus->dev, 180 dev_err(&bus->dev,
181 "Address space collision on device %s %pR\n", 181 "Address space collision on device %s %pR\n",
182 z->name, &z->resource); 182 z->name, &z->resource);
183 dev_set_name(&z->dev, "%02x", i);
184 z->dev.parent = &bus->dev; 183 z->dev.parent = &bus->dev;
185 z->dev.bus = &zorro_bus_type; 184 z->dev.bus = &zorro_bus_type;
185 z->dev.id = i;
186 } 186 }
187 187
188 /* ... then register them */ 188 /* ... then register them */