Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53434
b: refs/heads/master
c: c0f82d5
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Apr 12, 2007
1 parent 7747cfd commit 457c5ce
Show file tree
Hide file tree
Showing 14 changed files with 14 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: 469ba4dff954389f58cebb3df645e24433dcd565
refs/heads/master: c0f82d570c84f2592367e350a92ebd71e72ba68a
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/acecad.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static int usb_acecad_probe(struct usb_interface *intf, const struct usb_device_
input_dev->name = acecad->name;
input_dev->phys = acecad->phys;
usb_to_input_id(dev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, acecad);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/aiptek.c
Original file line number Diff line number Diff line change
Expand Up @@ -2044,7 +2044,7 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
inputdev->name = "Aiptek";
inputdev->phys = aiptek->features.usbPath;
usb_to_input_id(usbdev, &inputdev->id);
inputdev->cdev.dev = &intf->dev;
inputdev->dev.parent = &intf->dev;

input_set_drvdata(inputdev, aiptek);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/appletouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ static int atp_probe(struct usb_interface *iface, const struct usb_device_id *id
input_dev->name = "appletouch";
input_dev->phys = dev->phys;
usb_to_input_id(dev->udev, &input_dev->id);
input_dev->cdev.dev = &iface->dev;
input_dev->dev.parent = &iface->dev;

input_set_drvdata(input_dev, dev);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/ati_remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ static void ati_remote_input_init(struct ati_remote *ati_remote)
idev->phys = ati_remote->phys;

usb_to_input_id(ati_remote->udev, &idev->id);
idev->cdev.dev = &ati_remote->udev->dev;
idev->dev.parent = &ati_remote->udev->dev;
}

static int ati_remote_initialize(struct ati_remote *ati_remote)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/ati_remote2.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ static int ati_remote2_input_init(struct ati_remote2 *ar2)
idev->phys = ar2->phys;

usb_to_input_id(ar2->udev, &idev->id);
idev->cdev.dev = &ar2->udev->dev;
idev->dev.parent = &ar2->udev->dev;

retval = input_register_device(idev);
if (retval)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/gtco.c
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ static int gtco_probe(struct usb_interface *usbinterface,

/* Set input device required ID information */
usb_to_input_id(gtco->usbdev, &input_dev->id);
input_dev->cdev.dev = &usbinterface->dev;
input_dev->dev.parent = &usbinterface->dev;

/* Setup the URB, it will be posted later on open of input device */
endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/kbtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static int kbtab_probe(struct usb_interface *intf, const struct usb_device_id *i
input_dev->name = "KB Gear Tablet";
input_dev->phys = kbtab->phys;
usb_to_input_id(dev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, kbtab);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/keyspan_remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ static int keyspan_probe(struct usb_interface *interface, const struct usb_devic
input_dev->name = remote->name;
input_dev->phys = remote->phys;
usb_to_input_id(udev, &input_dev->id);
input_dev->cdev.dev = &interface->dev;
input_dev->dev.parent = &interface->dev;

input_dev->evbit[0] = BIT(EV_KEY); /* We will only report KEY events. */
for (i = 0; i < ARRAY_SIZE(keyspan_key_table); i++)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/powermate.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ static int powermate_probe(struct usb_interface *intf, const struct usb_device_i

input_dev->phys = pm->phys;
usb_to_input_id(udev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, pm);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/usbtouchscreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ static int usbtouch_probe(struct usb_interface *intf,
input_dev->name = usbtouch->name;
input_dev->phys = usbtouch->phys;
usb_to_input_id(udev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, usbtouch);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/wacom_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
wacom->wacom_wac = wacom_wac;
usb_to_input_id(dev, &input_dev->id);

input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, wacom);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/xpad.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id
input_dev->name = xpad_device[i].name;
input_dev->phys = xpad->phys;
usb_to_input_id(udev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, xpad);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/input/yealink.c
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ static int usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
input_dev->name = nfo->name;
input_dev->phys = yld->phys;
usb_to_input_id(udev, &input_dev->id);
input_dev->cdev.dev = &intf->dev;
input_dev->dev.parent = &intf->dev;

input_set_drvdata(input_dev, yld);

Expand Down

0 comments on commit 457c5ce

Please sign in to comment.