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/misc | |
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/misc')
-rw-r--r-- | drivers/misc/sgi-gru/grumain.c | 2 | ||||
-rw-r--r-- | drivers/misc/sgi-xp/xp_main.c | 2 | ||||
-rw-r--r-- | drivers/misc/sgi-xp/xpc_main.c | 8 | ||||
-rw-r--r-- | drivers/misc/sgi-xp/xpnet.c | 2 | ||||
-rw-r--r-- | drivers/misc/tifm_7xx1.c | 2 | ||||
-rw-r--r-- | drivers/misc/tifm_core.c | 7 |
6 files changed, 11 insertions, 12 deletions
diff --git a/drivers/misc/sgi-gru/grumain.c b/drivers/misc/sgi-gru/grumain.c index e11e1ac50900..3d2fc216bae5 100644 --- a/drivers/misc/sgi-gru/grumain.c +++ b/drivers/misc/sgi-gru/grumain.c | |||
@@ -29,7 +29,7 @@ static struct device_driver gru_driver = { | |||
29 | }; | 29 | }; |
30 | 30 | ||
31 | static struct device gru_device = { | 31 | static struct device gru_device = { |
32 | .bus_id = {0}, | 32 | .init_name = "", |
33 | .driver = &gru_driver, | 33 | .driver = &gru_driver, |
34 | }; | 34 | }; |
35 | 35 | ||
diff --git a/drivers/misc/sgi-xp/xp_main.c b/drivers/misc/sgi-xp/xp_main.c index 9a2e77172d94..16f8dcab2da4 100644 --- a/drivers/misc/sgi-xp/xp_main.c +++ b/drivers/misc/sgi-xp/xp_main.c | |||
@@ -25,7 +25,7 @@ struct device_driver xp_dbg_name = { | |||
25 | }; | 25 | }; |
26 | 26 | ||
27 | struct device xp_dbg_subname = { | 27 | struct device xp_dbg_subname = { |
28 | .bus_id = {0}, /* set to "" */ | 28 | .init_name = "", /* set to "" */ |
29 | .driver = &xp_dbg_name | 29 | .driver = &xp_dbg_name |
30 | }; | 30 | }; |
31 | 31 | ||
diff --git a/drivers/misc/sgi-xp/xpc_main.c b/drivers/misc/sgi-xp/xpc_main.c index e8d5cfbd32c2..89218f7cfaa7 100644 --- a/drivers/misc/sgi-xp/xpc_main.c +++ b/drivers/misc/sgi-xp/xpc_main.c | |||
@@ -59,12 +59,12 @@ struct device_driver xpc_dbg_name = { | |||
59 | }; | 59 | }; |
60 | 60 | ||
61 | struct device xpc_part_dbg_subname = { | 61 | struct device xpc_part_dbg_subname = { |
62 | .bus_id = {0}, /* set to "part" at xpc_init() time */ | 62 | .init_name = "", /* set to "part" at xpc_init() time */ |
63 | .driver = &xpc_dbg_name | 63 | .driver = &xpc_dbg_name |
64 | }; | 64 | }; |
65 | 65 | ||
66 | struct device xpc_chan_dbg_subname = { | 66 | struct device xpc_chan_dbg_subname = { |
67 | .bus_id = {0}, /* set to "chan" at xpc_init() time */ | 67 | .init_name = "", /* set to "chan" at xpc_init() time */ |
68 | .driver = &xpc_dbg_name | 68 | .driver = &xpc_dbg_name |
69 | }; | 69 | }; |
70 | 70 | ||
@@ -1258,8 +1258,8 @@ xpc_init(void) | |||
1258 | int ret; | 1258 | int ret; |
1259 | struct task_struct *kthread; | 1259 | struct task_struct *kthread; |
1260 | 1260 | ||
1261 | snprintf(xpc_part->bus_id, BUS_ID_SIZE, "part"); | 1261 | dev_set_name(xpc_part, "part"); |
1262 | snprintf(xpc_chan->bus_id, BUS_ID_SIZE, "chan"); | 1262 | dev_set_name(xpc_chan, "chan"); |
1263 | 1263 | ||
1264 | if (is_shub()) { | 1264 | if (is_shub()) { |
1265 | /* | 1265 | /* |
diff --git a/drivers/misc/sgi-xp/xpnet.c b/drivers/misc/sgi-xp/xpnet.c index 8e6aa9508f46..81152b3e360c 100644 --- a/drivers/misc/sgi-xp/xpnet.c +++ b/drivers/misc/sgi-xp/xpnet.c | |||
@@ -138,7 +138,7 @@ struct device_driver xpnet_dbg_name = { | |||
138 | }; | 138 | }; |
139 | 139 | ||
140 | struct device xpnet_dbg_subname = { | 140 | struct device xpnet_dbg_subname = { |
141 | .bus_id = {0}, /* set to "" */ | 141 | .init_name = "", /* set to "" */ |
142 | .driver = &xpnet_dbg_name | 142 | .driver = &xpnet_dbg_name |
143 | }; | 143 | }; |
144 | 144 | ||
diff --git a/drivers/misc/tifm_7xx1.c b/drivers/misc/tifm_7xx1.c index af6173319e07..be5672a98702 100644 --- a/drivers/misc/tifm_7xx1.c +++ b/drivers/misc/tifm_7xx1.c | |||
@@ -164,7 +164,7 @@ static void tifm_7xx1_switch_media(struct work_struct *work) | |||
164 | if (sock) { | 164 | if (sock) { |
165 | printk(KERN_INFO | 165 | printk(KERN_INFO |
166 | "%s : demand removing card from socket %u:%u\n", | 166 | "%s : demand removing card from socket %u:%u\n", |
167 | fm->dev.bus_id, fm->id, cnt); | 167 | dev_name(&fm->dev), fm->id, cnt); |
168 | fm->sockets[cnt] = NULL; | 168 | fm->sockets[cnt] = NULL; |
169 | sock_addr = sock->addr; | 169 | sock_addr = sock->addr; |
170 | spin_unlock_irqrestore(&fm->lock, flags); | 170 | spin_unlock_irqrestore(&fm->lock, flags); |
diff --git a/drivers/misc/tifm_core.c b/drivers/misc/tifm_core.c index 82dc72a1484f..98bcba521da2 100644 --- a/drivers/misc/tifm_core.c +++ b/drivers/misc/tifm_core.c | |||
@@ -203,7 +203,7 @@ int tifm_add_adapter(struct tifm_adapter *fm) | |||
203 | if (rc) | 203 | if (rc) |
204 | return rc; | 204 | return rc; |
205 | 205 | ||
206 | snprintf(fm->dev.bus_id, BUS_ID_SIZE, "tifm%u", fm->id); | 206 | dev_set_name(&fm->dev, "tifm%u", fm->id); |
207 | rc = device_add(&fm->dev); | 207 | rc = device_add(&fm->dev); |
208 | if (rc) { | 208 | if (rc) { |
209 | spin_lock(&tifm_adapter_lock); | 209 | spin_lock(&tifm_adapter_lock); |
@@ -266,9 +266,8 @@ struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm, unsigned int id, | |||
266 | sock->dev.dma_mask = fm->dev.parent->dma_mask; | 266 | sock->dev.dma_mask = fm->dev.parent->dma_mask; |
267 | sock->dev.release = tifm_free_device; | 267 | sock->dev.release = tifm_free_device; |
268 | 268 | ||
269 | snprintf(sock->dev.bus_id, BUS_ID_SIZE, | 269 | dev_set_name(&sock->dev, "tifm_%s%u:%u", |
270 | "tifm_%s%u:%u", tifm_media_type_name(type, 2), | 270 | tifm_media_type_name(type, 2), fm->id, id); |
271 | fm->id, id); | ||
272 | printk(KERN_INFO DRIVER_NAME | 271 | printk(KERN_INFO DRIVER_NAME |
273 | ": %s card detected in socket %u:%u\n", | 272 | ": %s card detected in socket %u:%u\n", |
274 | tifm_media_type_name(type, 0), fm->id, id); | 273 | tifm_media_type_name(type, 0), fm->id, id); |