Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53433
b: refs/heads/master
c: 469ba4d
h: refs/heads/master
i:
  53431: d48592b
v: v3
  • Loading branch information
Dmitry Torokhov committed Apr 12, 2007
1 parent 941ff59 commit 7747cfd
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88a447a030bfec9f1e8666daf27d9d73c8c92448
refs/heads/master: 469ba4dff954389f58cebb3df645e24433dcd565
3 changes: 2 additions & 1 deletion trunk/drivers/input/keyboard/aaed2000_kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ static int __devinit aaedkbd_probe(struct platform_device *pdev)
input_dev->id.vendor = 0x0001;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &pdev->dev;
input_dev->dev.parent = &pdev->dev;

input_set_drvdata(input_dev, aaedkbd);

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/atkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ static void atkbd_set_device_attrs(struct atkbd *atkbd)
input_dev->id.product = atkbd->translated ? 1 : atkbd->set;
input_dev->id.version = atkbd->id;
input_dev->event = atkbd_event;
input_dev->cdev.dev = &atkbd->ps2dev.serio->dev;
input_dev->dev.parent = &atkbd->ps2dev.serio->dev;

input_set_drvdata(input_dev, atkbd);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/corgikbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ static int __init corgikbd_probe(struct platform_device *pdev)
input_dev->id.vendor = 0x0001;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &pdev->dev;
input_dev->dev.parent = &pdev->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_PWR) | BIT(EV_SW);
input_dev->keycode = corgikbd->keycode;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/gpio_keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev)

input->name = pdev->name;
input->phys = "gpio-keys/input0";
input->cdev.dev = &pdev->dev;
input->dev.parent = &pdev->dev;

input->id.bustype = BUS_HOST;
input->id.vendor = 0x0001;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/hil_kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ static int hil_kbd_connect(struct serio *serio, struct serio_driver *drv)
kbd->dev->id.vendor = PCI_VENDOR_ID_HP;
kbd->dev->id.product = 0x0001; /* TODO: get from kbd->rsc */
kbd->dev->id.version = 0x0100; /* TODO: get from kbd->rsc */
kbd->dev->cdev.dev = &serio->dev;
kbd->dev->dev.parent = &serio->dev;

for (i = 0; i < 128; i++) {
set_bit(hil_kbd_set1[i], kbd->dev->keybit);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/lkkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ lkkbd_connect (struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_LKKBD;
input_dev->id.product = 0;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;
input_dev->event = lkkbd_event;

input_set_drvdata (input_dev, lk);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/input/keyboard/locomokbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ static int locomokbd_probe(struct locomo_dev *dev)
input_dev->id.vendor = 0x0001;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->dev.parent = &dev->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
input_dev->keycode = locomokbd->keycode;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/newtonkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static int nkbd_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_NEWTON;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
input_dev->keycode = nkbd->keycode;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/omap-keypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static int __init omap_kp_probe(struct platform_device *pdev)
set_bit(keymap[i] & KEY_MAX, input_dev->keybit);
input_dev->name = "omap-keypad";
input_dev->phys = "omap-keypad/input0";
input_dev->cdev.dev = &pdev->dev;
input_dev->dev.parent = &pdev->dev;

input_dev->id.bustype = BUS_HOST;
input_dev->id.vendor = 0x0001;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/pxa27x_keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ static int __devinit pxakbd_probe(struct platform_device *pdev)
input_dev->id.bustype = BUS_HOST;
input_dev->open = pxakbd_open;
input_dev->close = pxakbd_close;
input_dev->cdev.dev = &pdev->dev;
input_dev->dev.parent = &pdev->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP) | BIT(EV_REL);
input_dev->relbit[LONG(REL_WHEEL)] = BIT(REL_WHEEL);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/spitzkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ static int __init spitzkbd_probe(struct platform_device *dev)

input_dev->name = "Spitz Keyboard";
input_dev->phys = spitzkbd->phys;
input_dev->cdev.dev = &dev->dev;
input_dev->dev.parent = &dev->dev;

input_dev->id.bustype = BUS_HOST;
input_dev->id.vendor = 0x0001;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/stowaway.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static int skbd_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_STOWAWAY;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
input_dev->keycode = skbd->keycode;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/sunkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ static int sunkbd_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_SUNKBD;
input_dev->id.product = sunkbd->type;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;

input_set_drvdata(input_dev, sunkbd);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/xtkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static int xtkbd_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = 0x0001;
input_dev->id.product = 0x0001;
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
input_dev->keycode = xtkbd->keycode;
Expand Down

0 comments on commit 7747cfd

Please sign in to comment.