diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 20:02:07 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 20:02:07 -0500 |
| commit | 40d7ee5d162203b40b5f4fbb312ab016edddb97f (patch) | |
| tree | 432db33df85f7f244676127a189a828dfbf2877b /drivers/message | |
| parent | 5fec8bdbf9a1c4df4ad3f20e52aa2d8caed490c8 (diff) | |
| parent | b8ac9fc0e8cda9f9776019c5b0464b0c6d2d4c90 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6: (60 commits)
uio: make uio_info's name and version const
UIO: Documentation for UIO ioport info handling
UIO: Pass information about ioports to userspace (V2)
UIO: uio_pdrv_genirq: allow custom irq_flags
UIO: use pci_ioremap_bar() in drivers/uio
arm: struct device - replace bus_id with dev_name(), dev_set_name()
libata: struct device - replace bus_id with dev_name(), dev_set_name()
avr: struct device - replace bus_id with dev_name(), dev_set_name()
block: struct device - replace bus_id with dev_name(), dev_set_name()
chris: struct device - replace bus_id with dev_name(), dev_set_name()
dmi: struct device - replace bus_id with dev_name(), dev_set_name()
gadget: struct device - replace bus_id with dev_name(), dev_set_name()
gpio: struct device - replace bus_id with dev_name(), dev_set_name()
gpu: struct device - replace bus_id with dev_name(), dev_set_name()
hwmon: struct device - replace bus_id with dev_name(), dev_set_name()
i2o: struct device - replace bus_id with dev_name(), dev_set_name()
IA64: struct device - replace bus_id with dev_name(), dev_set_name()
i7300_idle: struct device - replace bus_id with dev_name(), dev_set_name()
infiniband: struct device - replace bus_id with dev_name(), dev_set_name()
ISDN: struct device - replace bus_id with dev_name(), dev_set_name()
...
Diffstat (limited to 'drivers/message')
| -rw-r--r-- | drivers/message/i2o/device.c | 8 | ||||
| -rw-r--r-- | drivers/message/i2o/i2o_proc.c | 2 | ||||
| -rw-r--r-- | drivers/message/i2o/iop.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/drivers/message/i2o/device.c b/drivers/message/i2o/device.c index c455da4ff411..0ee4264f5db7 100644 --- a/drivers/message/i2o/device.c +++ b/drivers/message/i2o/device.c | |||
| @@ -132,7 +132,7 @@ static void i2o_device_release(struct device *dev) | |||
| 132 | { | 132 | { |
| 133 | struct i2o_device *i2o_dev = to_i2o_device(dev); | 133 | struct i2o_device *i2o_dev = to_i2o_device(dev); |
| 134 | 134 | ||
| 135 | pr_debug("i2o: device %s released\n", dev->bus_id); | 135 | pr_debug("i2o: device %s released\n", dev_name(dev)); |
| 136 | 136 | ||
| 137 | kfree(i2o_dev); | 137 | kfree(i2o_dev); |
| 138 | } | 138 | } |
| @@ -227,8 +227,8 @@ static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry) | |||
| 227 | 227 | ||
| 228 | i2o_dev->lct_data = *entry; | 228 | i2o_dev->lct_data = *entry; |
| 229 | 229 | ||
| 230 | snprintf(i2o_dev->device.bus_id, BUS_ID_SIZE, "%d:%03x", c->unit, | 230 | dev_set_name(&i2o_dev->device, "%d:%03x", c->unit, |
| 231 | i2o_dev->lct_data.tid); | 231 | i2o_dev->lct_data.tid); |
| 232 | 232 | ||
| 233 | i2o_dev->iop = c; | 233 | i2o_dev->iop = c; |
| 234 | i2o_dev->device.parent = &c->device; | 234 | i2o_dev->device.parent = &c->device; |
| @@ -279,7 +279,7 @@ static int i2o_device_add(struct i2o_controller *c, i2o_lct_entry *entry) | |||
| 279 | 279 | ||
| 280 | i2o_driver_notify_device_add_all(i2o_dev); | 280 | i2o_driver_notify_device_add_all(i2o_dev); |
| 281 | 281 | ||
| 282 | pr_debug("i2o: device %s added\n", i2o_dev->device.bus_id); | 282 | pr_debug("i2o: device %s added\n", dev_name(&i2o_dev->device)); |
| 283 | 283 | ||
| 284 | return 0; | 284 | return 0; |
| 285 | 285 | ||
diff --git a/drivers/message/i2o/i2o_proc.c b/drivers/message/i2o/i2o_proc.c index 54a3016ff45d..9a36b5a7de57 100644 --- a/drivers/message/i2o/i2o_proc.c +++ b/drivers/message/i2o/i2o_proc.c | |||
| @@ -1300,7 +1300,7 @@ static int i2o_seq_show_dev_name(struct seq_file *seq, void *v) | |||
| 1300 | { | 1300 | { |
| 1301 | struct i2o_device *d = (struct i2o_device *)seq->private; | 1301 | struct i2o_device *d = (struct i2o_device *)seq->private; |
| 1302 | 1302 | ||
| 1303 | seq_printf(seq, "%s\n", d->device.bus_id); | 1303 | seq_printf(seq, "%s\n", dev_name(&d->device)); |
| 1304 | 1304 | ||
| 1305 | return 0; | 1305 | return 0; |
| 1306 | } | 1306 | } |
diff --git a/drivers/message/i2o/iop.c b/drivers/message/i2o/iop.c index 35c67d1f255e..27cf4af0e13d 100644 --- a/drivers/message/i2o/iop.c +++ b/drivers/message/i2o/iop.c | |||
| @@ -1072,7 +1072,7 @@ struct i2o_controller *i2o_iop_alloc(void) | |||
| 1072 | 1072 | ||
| 1073 | c->device.release = &i2o_iop_release; | 1073 | c->device.release = &i2o_iop_release; |
| 1074 | 1074 | ||
| 1075 | snprintf(c->device.bus_id, BUS_ID_SIZE, "iop%d", c->unit); | 1075 | dev_set_name(&c->device, "iop%d", c->unit); |
| 1076 | 1076 | ||
| 1077 | #if BITS_PER_LONG == 64 | 1077 | #if BITS_PER_LONG == 64 |
| 1078 | spin_lock_init(&c->context_list_lock); | 1078 | spin_lock_init(&c->context_list_lock); |
