diff options
| author | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:34:58 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:34:58 -0400 |
| commit | 469ba4dff954389f58cebb3df645e24433dcd565 (patch) | |
| tree | 35d86557771f367562aef062b12f8ecd64eba7c2 /drivers/input/keyboard | |
| parent | 88a447a030bfec9f1e8666daf27d9d73c8c92448 (diff) | |
Input: keyboards - switch to using input_dev->dev.parent
In preparation for struct class_device -> struct device input
core conversion, switch to using input_dev->dev.parent when
specifying device position in sysfs tree.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/keyboard')
| -rw-r--r-- | drivers/input/keyboard/aaed2000_kbd.c | 3 | ||||
| -rw-r--r-- | drivers/input/keyboard/atkbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/corgikbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/gpio_keys.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/hil_kbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/lkkbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/locomokbd.c | 1 | ||||
| -rw-r--r-- | drivers/input/keyboard/newtonkbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/omap-keypad.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/pxa27x_keyboard.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/spitzkbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/stowaway.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/sunkbd.c | 2 | ||||
| -rw-r--r-- | drivers/input/keyboard/xtkbd.c | 2 |
14 files changed, 15 insertions, 13 deletions
diff --git a/drivers/input/keyboard/aaed2000_kbd.c b/drivers/input/keyboard/aaed2000_kbd.c index e584413f1d..3a37505f06 100644 --- a/drivers/input/keyboard/aaed2000_kbd.c +++ b/drivers/input/keyboard/aaed2000_kbd.c | |||
| @@ -141,7 +141,8 @@ static int __devinit aaedkbd_probe(struct platform_device *pdev) | |||
| 141 | input_dev->id.vendor = 0x0001; | 141 | input_dev->id.vendor = 0x0001; |
| 142 | input_dev->id.product = 0x0001; | 142 | input_dev->id.product = 0x0001; |
| 143 | input_dev->id.version = 0x0100; | 143 | input_dev->id.version = 0x0100; |
| 144 | input_dev->cdev.dev = &pdev->dev; | 144 | input_dev->dev.parent = &pdev->dev; |
| 145 | |||
| 145 | input_set_drvdata(input_dev, aaedkbd); | 146 | input_set_drvdata(input_dev, aaedkbd); |
| 146 | 147 | ||
| 147 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | 148 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); |
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 04754732c2..be1fe46cd3 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
| @@ -883,7 +883,7 @@ static void atkbd_set_device_attrs(struct atkbd *atkbd) | |||
| 883 | input_dev->id.product = atkbd->translated ? 1 : atkbd->set; | 883 | input_dev->id.product = atkbd->translated ? 1 : atkbd->set; |
| 884 | input_dev->id.version = atkbd->id; | 884 | input_dev->id.version = atkbd->id; |
| 885 | input_dev->event = atkbd_event; | 885 | input_dev->event = atkbd_event; |
| 886 | input_dev->cdev.dev = &atkbd->ps2dev.serio->dev; | 886 | input_dev->dev.parent = &atkbd->ps2dev.serio->dev; |
| 887 | 887 | ||
| 888 | input_set_drvdata(input_dev, atkbd); | 888 | input_set_drvdata(input_dev, atkbd); |
| 889 | 889 | ||
diff --git a/drivers/input/keyboard/corgikbd.c b/drivers/input/keyboard/corgikbd.c index 25dd879921..6578bfff64 100644 --- a/drivers/input/keyboard/corgikbd.c +++ b/drivers/input/keyboard/corgikbd.c | |||
| @@ -323,7 +323,7 @@ static int __init corgikbd_probe(struct platform_device *pdev) | |||
| 323 | input_dev->id.vendor = 0x0001; | 323 | input_dev->id.vendor = 0x0001; |
| 324 | input_dev->id.product = 0x0001; | 324 | input_dev->id.product = 0x0001; |
| 325 | input_dev->id.version = 0x0100; | 325 | input_dev->id.version = 0x0100; |
| 326 | input_dev->cdev.dev = &pdev->dev; | 326 | input_dev->dev.parent = &pdev->dev; |
| 327 | 327 | ||
| 328 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_PWR) | BIT(EV_SW); | 328 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_PWR) | BIT(EV_SW); |
| 329 | input_dev->keycode = corgikbd->keycode; | 329 | input_dev->keycode = corgikbd->keycode; |
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index b94399359e..71771ba612 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c | |||
| @@ -65,7 +65,7 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev) | |||
| 65 | 65 | ||
| 66 | input->name = pdev->name; | 66 | input->name = pdev->name; |
| 67 | input->phys = "gpio-keys/input0"; | 67 | input->phys = "gpio-keys/input0"; |
| 68 | input->cdev.dev = &pdev->dev; | 68 | input->dev.parent = &pdev->dev; |
| 69 | 69 | ||
| 70 | input->id.bustype = BUS_HOST; | 70 | input->id.bustype = BUS_HOST; |
| 71 | input->id.vendor = 0x0001; | 71 | input->id.vendor = 0x0001; |
diff --git a/drivers/input/keyboard/hil_kbd.c b/drivers/input/keyboard/hil_kbd.c index 087d4df2c4..cdd254f2e6 100644 --- a/drivers/input/keyboard/hil_kbd.c +++ b/drivers/input/keyboard/hil_kbd.c | |||
| @@ -335,7 +335,7 @@ static int hil_kbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 335 | kbd->dev->id.vendor = PCI_VENDOR_ID_HP; | 335 | kbd->dev->id.vendor = PCI_VENDOR_ID_HP; |
| 336 | kbd->dev->id.product = 0x0001; /* TODO: get from kbd->rsc */ | 336 | kbd->dev->id.product = 0x0001; /* TODO: get from kbd->rsc */ |
| 337 | kbd->dev->id.version = 0x0100; /* TODO: get from kbd->rsc */ | 337 | kbd->dev->id.version = 0x0100; /* TODO: get from kbd->rsc */ |
| 338 | kbd->dev->cdev.dev = &serio->dev; | 338 | kbd->dev->dev.parent = &serio->dev; |
| 339 | 339 | ||
| 340 | for (i = 0; i < 128; i++) { | 340 | for (i = 0; i < 128; i++) { |
| 341 | set_bit(hil_kbd_set1[i], kbd->dev->keybit); | 341 | set_bit(hil_kbd_set1[i], kbd->dev->keybit); |
diff --git a/drivers/input/keyboard/lkkbd.c b/drivers/input/keyboard/lkkbd.c index 257b9d42bb..1b08f4e79d 100644 --- a/drivers/input/keyboard/lkkbd.c +++ b/drivers/input/keyboard/lkkbd.c | |||
| @@ -666,7 +666,7 @@ lkkbd_connect (struct serio *serio, struct serio_driver *drv) | |||
| 666 | input_dev->id.vendor = SERIO_LKKBD; | 666 | input_dev->id.vendor = SERIO_LKKBD; |
| 667 | input_dev->id.product = 0; | 667 | input_dev->id.product = 0; |
| 668 | input_dev->id.version = 0x0100; | 668 | input_dev->id.version = 0x0100; |
| 669 | input_dev->cdev.dev = &serio->dev; | 669 | input_dev->dev.parent = &serio->dev; |
| 670 | input_dev->event = lkkbd_event; | 670 | input_dev->event = lkkbd_event; |
| 671 | 671 | ||
| 672 | input_set_drvdata (input_dev, lk); | 672 | input_set_drvdata (input_dev, lk); |
diff --git a/drivers/input/keyboard/locomokbd.c b/drivers/input/keyboard/locomokbd.c index 764f5ee764..7a41b271f2 100644 --- a/drivers/input/keyboard/locomokbd.c +++ b/drivers/input/keyboard/locomokbd.c | |||
| @@ -231,6 +231,7 @@ static int locomokbd_probe(struct locomo_dev *dev) | |||
| 231 | input_dev->id.vendor = 0x0001; | 231 | input_dev->id.vendor = 0x0001; |
| 232 | input_dev->id.product = 0x0001; | 232 | input_dev->id.product = 0x0001; |
| 233 | input_dev->id.version = 0x0100; | 233 | input_dev->id.version = 0x0100; |
| 234 | input_dev->dev.parent = &dev->dev; | ||
| 234 | 235 | ||
| 235 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | 236 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); |
| 236 | input_dev->keycode = locomokbd->keycode; | 237 | input_dev->keycode = locomokbd->keycode; |
diff --git a/drivers/input/keyboard/newtonkbd.c b/drivers/input/keyboard/newtonkbd.c index 179f3a4f4e..b97a41e3ee 100644 --- a/drivers/input/keyboard/newtonkbd.c +++ b/drivers/input/keyboard/newtonkbd.c | |||
| @@ -104,7 +104,7 @@ static int nkbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 104 | input_dev->id.vendor = SERIO_NEWTON; | 104 | input_dev->id.vendor = SERIO_NEWTON; |
| 105 | input_dev->id.product = 0x0001; | 105 | input_dev->id.product = 0x0001; |
| 106 | input_dev->id.version = 0x0100; | 106 | input_dev->id.version = 0x0100; |
| 107 | input_dev->cdev.dev = &serio->dev; | 107 | input_dev->dev.parent = &serio->dev; |
| 108 | 108 | ||
| 109 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | 109 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); |
| 110 | input_dev->keycode = nkbd->keycode; | 110 | input_dev->keycode = nkbd->keycode; |
diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c index 1790f0c15f..3a228634f1 100644 --- a/drivers/input/keyboard/omap-keypad.c +++ b/drivers/input/keyboard/omap-keypad.c | |||
| @@ -370,7 +370,7 @@ static int __init omap_kp_probe(struct platform_device *pdev) | |||
| 370 | set_bit(keymap[i] & KEY_MAX, input_dev->keybit); | 370 | set_bit(keymap[i] & KEY_MAX, input_dev->keybit); |
| 371 | input_dev->name = "omap-keypad"; | 371 | input_dev->name = "omap-keypad"; |
| 372 | input_dev->phys = "omap-keypad/input0"; | 372 | input_dev->phys = "omap-keypad/input0"; |
| 373 | input_dev->cdev.dev = &pdev->dev; | 373 | input_dev->dev.parent = &pdev->dev; |
| 374 | 374 | ||
| 375 | input_dev->id.bustype = BUS_HOST; | 375 | input_dev->id.bustype = BUS_HOST; |
| 376 | input_dev->id.vendor = 0x0001; | 376 | input_dev->id.vendor = 0x0001; |
diff --git a/drivers/input/keyboard/pxa27x_keyboard.c b/drivers/input/keyboard/pxa27x_keyboard.c index 1a2afbf213..993df872b3 100644 --- a/drivers/input/keyboard/pxa27x_keyboard.c +++ b/drivers/input/keyboard/pxa27x_keyboard.c | |||
| @@ -169,7 +169,7 @@ static int __devinit pxakbd_probe(struct platform_device *pdev) | |||
| 169 | input_dev->id.bustype = BUS_HOST; | 169 | input_dev->id.bustype = BUS_HOST; |
| 170 | input_dev->open = pxakbd_open; | 170 | input_dev->open = pxakbd_open; |
| 171 | input_dev->close = pxakbd_close; | 171 | input_dev->close = pxakbd_close; |
| 172 | input_dev->cdev.dev = &pdev->dev; | 172 | input_dev->dev.parent = &pdev->dev; |
| 173 | 173 | ||
| 174 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_REL); | 174 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_REL); |
| 175 | input_dev->relbit[LONG(REL_WHEEL)] = BIT(REL_WHEEL); | 175 | input_dev->relbit[LONG(REL_WHEEL)] = BIT(REL_WHEEL); |
diff --git a/drivers/input/keyboard/spitzkbd.c b/drivers/input/keyboard/spitzkbd.c index bc960748bf..41b8038547 100644 --- a/drivers/input/keyboard/spitzkbd.c +++ b/drivers/input/keyboard/spitzkbd.c | |||
| @@ -374,7 +374,7 @@ static int __init spitzkbd_probe(struct platform_device *dev) | |||
| 374 | 374 | ||
| 375 | input_dev->name = "Spitz Keyboard"; | 375 | input_dev->name = "Spitz Keyboard"; |
| 376 | input_dev->phys = spitzkbd->phys; | 376 | input_dev->phys = spitzkbd->phys; |
| 377 | input_dev->cdev.dev = &dev->dev; | 377 | input_dev->dev.parent = &dev->dev; |
| 378 | 378 | ||
| 379 | input_dev->id.bustype = BUS_HOST; | 379 | input_dev->id.bustype = BUS_HOST; |
| 380 | input_dev->id.vendor = 0x0001; | 380 | input_dev->id.vendor = 0x0001; |
diff --git a/drivers/input/keyboard/stowaway.c b/drivers/input/keyboard/stowaway.c index c109620893..b44b0684d5 100644 --- a/drivers/input/keyboard/stowaway.c +++ b/drivers/input/keyboard/stowaway.c | |||
| @@ -108,7 +108,7 @@ static int skbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 108 | input_dev->id.vendor = SERIO_STOWAWAY; | 108 | input_dev->id.vendor = SERIO_STOWAWAY; |
| 109 | input_dev->id.product = 0x0001; | 109 | input_dev->id.product = 0x0001; |
| 110 | input_dev->id.version = 0x0100; | 110 | input_dev->id.version = 0x0100; |
| 111 | input_dev->cdev.dev = &serio->dev; | 111 | input_dev->dev.parent = &serio->dev; |
| 112 | 112 | ||
| 113 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | 113 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); |
| 114 | input_dev->keycode = skbd->keycode; | 114 | input_dev->keycode = skbd->keycode; |
diff --git a/drivers/input/keyboard/sunkbd.c b/drivers/input/keyboard/sunkbd.c index ca74b2bacb..1d4e39624c 100644 --- a/drivers/input/keyboard/sunkbd.c +++ b/drivers/input/keyboard/sunkbd.c | |||
| @@ -271,7 +271,7 @@ static int sunkbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 271 | input_dev->id.vendor = SERIO_SUNKBD; | 271 | input_dev->id.vendor = SERIO_SUNKBD; |
| 272 | input_dev->id.product = sunkbd->type; | 272 | input_dev->id.product = sunkbd->type; |
| 273 | input_dev->id.version = 0x0100; | 273 | input_dev->id.version = 0x0100; |
| 274 | input_dev->cdev.dev = &serio->dev; | 274 | input_dev->dev.parent = &serio->dev; |
| 275 | 275 | ||
| 276 | input_set_drvdata(input_dev, sunkbd); | 276 | input_set_drvdata(input_dev, sunkbd); |
| 277 | 277 | ||
diff --git a/drivers/input/keyboard/xtkbd.c b/drivers/input/keyboard/xtkbd.c index 11d970881d..f3a56eb58e 100644 --- a/drivers/input/keyboard/xtkbd.c +++ b/drivers/input/keyboard/xtkbd.c | |||
| @@ -108,7 +108,7 @@ static int xtkbd_connect(struct serio *serio, struct serio_driver *drv) | |||
| 108 | input_dev->id.vendor = 0x0001; | 108 | input_dev->id.vendor = 0x0001; |
| 109 | input_dev->id.product = 0x0001; | 109 | input_dev->id.product = 0x0001; |
| 110 | input_dev->id.version = 0x0100; | 110 | input_dev->id.version = 0x0100; |
| 111 | input_dev->cdev.dev = &serio->dev; | 111 | input_dev->dev.parent = &serio->dev; |
| 112 | 112 | ||
| 113 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | 113 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); |
| 114 | input_dev->keycode = xtkbd->keycode; | 114 | input_dev->keycode = xtkbd->keycode; |
