]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/message/i2o/device.c
i2o: struct device - replace bus_id with dev_name(), dev_set_name()
[linux-2.6-omap-h63xx.git] / drivers / message / i2o / device.c
index 54c2e9ae23e5e98c9b10849bab02364a338e3185..a7dd03e8d3321e892ec780f44991c6ddd5b5abd0 100644 (file)
@@ -134,7 +134,7 @@ static void i2o_device_release(struct device *dev)
 {
        struct i2o_device *i2o_dev = to_i2o_device(dev);
 
-       pr_debug("i2o: device %s released\n", dev->bus_id);
+       pr_debug("i2o: device %s released\n", dev_name(dev));
 
        kfree(i2o_dev);
 }
@@ -229,8 +229,8 @@ static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry)
 
        i2o_dev->lct_data = *entry;
 
-       snprintf(i2o_dev->device.bus_id, BUS_ID_SIZE, "%d:%03x", c->unit,
-                i2o_dev->lct_data.tid);
+       dev_set_name(&i2o_dev->device, "%d:%03x", c->unit,
+                    i2o_dev->lct_data.tid);
 
        i2o_dev->iop = c;
        i2o_dev->device.parent = &c->device;
@@ -281,7 +281,7 @@ static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry)
 
        i2o_driver_notify_device_add_all(i2o_dev);
 
-       pr_debug("i2o: device %s added\n", i2o_dev->device.bus_id);
+       pr_debug("i2o: device %s added\n", dev_name(&i2o_dev->device));
 
        return 0;