Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53436
b: refs/heads/master
c: a5394fb
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Apr 12, 2007
1 parent 411afcf commit f571222
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 7 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: 28aa7f1c8178db8b277a6e11325ef09adea8ac46
refs/heads/master: a5394fb075a80212765ee3cd4a7842bdccf5fc0a
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/ads7846.c
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ static int __devinit ads7846_probe(struct spi_device *spi)

input_dev->name = "ADS784x Touchscreen";
input_dev->phys = ts->phys;
input_dev->cdev.dev = &spi->dev;
input_dev->dev.parent = &spi->dev;

input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/corgi_ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ static int __init corgits_probe(struct platform_device *pdev)
input_dev->id.vendor = 0x0001;
input_dev->id.product = 0x0002;
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_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/elo.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ static int elo_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_ELO;
input_dev->id.product = elo->id;
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_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/input/touchscreen/gunze.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ static int gunze_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_GUNZE;
input_dev->id.product = 0x0051;
input_dev->id.version = 0x0100;
input_dev->dev.parent = &serio->dev;
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
input_set_abs_params(input_dev, ABS_X, 24, 1000, 0, 0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/h3600_ts_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ static int h3600ts_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_H3600;
input_dev->id.product = 0x0666; /* FIXME !!! We can ask the hardware */
input_dev->id.version = 0x0100;
input_dev->cdev.dev = &serio->dev;
input_dev->dev.parent = &serio->dev;

input_set_drvdata(input_dev, ts);

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/input/touchscreen/mtouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ static int mtouch_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_MICROTOUCH;
input_dev->id.product = 0;
input_dev->id.version = 0x0100;
input_dev->dev.parent = &serio->dev;
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
input_set_abs_params(mtouch->dev, ABS_X, MTOUCH_MIN_XC, MTOUCH_MAX_XC, 0, 0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/penmount.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static int pm_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_PENMOUNT;
input_dev->id.product = 0;
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_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/input/touchscreen/touchright.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ static int tr_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_TOUCHRIGHT;
input_dev->id.product = 0;
input_dev->id.version = 0x0100;
input_dev->dev.parent = &serio->dev;
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
input_set_abs_params(tr->dev, ABS_X, TR_MIN_XC, TR_MAX_XC, 0, 0);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/input/touchscreen/touchwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ static int tw_connect(struct serio *serio, struct serio_driver *drv)
input_dev->id.vendor = SERIO_TOUCHWIN;
input_dev->id.product = 0;
input_dev->id.version = 0x0100;
input_dev->dev.parent = &serio->dev;
input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
input_set_abs_params(tw->dev, ABS_X, TW_MIN_XC, TW_MAX_XC, 0, 0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/input/touchscreen/ucb1400_ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ static int ucb1400_ts_probe(struct device *dev)

input_set_drvdata(idev, ucb);

idev->cdev.dev = dev;
idev->dev.parent = dev;
idev->name = "UCB1400 touchscreen interface";
idev->id.vendor = ucb1400_reg_read(ucb, AC97_VENDOR_ID1);
idev->id.product = id;
Expand Down

0 comments on commit f571222

Please sign in to comment.