aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/joystick/xpad.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-04 15:32:53 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-04 15:32:53 -0700
commit8818e4190f0e04ad20a30e7488dcdd3029b4b96d (patch)
treeb821cc897e0f9fd14585f10b16c0a8dd5b3fdbff /drivers/input/joystick/xpad.c
parenta852d78e4e24f2200fa1764ca3366b4fa4fd072a (diff)
USB: input: xpad.c: fix up dev_* messages
Previously I had made the struct device point to the input device, but after talking with Dmitry, he said that the USB device would make more sense for this driver to point to. So converted it to use that instead. CC: Dmitry Torokhov <dmitry.torokhov@gmail.com> CC: "Magnus Hörlin" <magnus@alefors.se> CC: Rusty Russell <rusty@rustcorp.com.au> CC: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/input/joystick/xpad.c')
-rw-r--r--drivers/input/joystick/xpad.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index 2e106b0796c..ee16fb67b7a 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -252,6 +252,7 @@ MODULE_DEVICE_TABLE (usb, xpad_table);
struct usb_xpad {
struct input_dev *dev; /* input device interface */
struct usb_device *udev; /* usb device */
+ struct usb_interface *intf; /* usb interface */
int pad_present;
@@ -457,7 +458,7 @@ static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned cha
static void xpad_irq_in(struct urb *urb)
{
struct usb_xpad *xpad = urb->context;
- struct device *dev = &xpad->dev->dev;
+ struct device *dev = &xpad->intf->dev;
int retval, status;
status = urb->status;
@@ -500,7 +501,7 @@ exit:
static void xpad_bulk_out(struct urb *urb)
{
struct usb_xpad *xpad = urb->context;
- struct device *dev = &xpad->dev->dev;
+ struct device *dev = &xpad->intf->dev;
switch (urb->status) {
case 0:
@@ -523,7 +524,7 @@ static void xpad_bulk_out(struct urb *urb)
static void xpad_irq_out(struct urb *urb)
{
struct usb_xpad *xpad = urb->context;
- struct device *dev = &xpad->dev->dev;
+ struct device *dev = &xpad->intf->dev;
int retval, status;
status = urb->status;
@@ -855,6 +856,7 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id
}
xpad->udev = udev;
+ xpad->intf = intf;
xpad->mapping = xpad_device[i].mapping;
xpad->xtype = xpad_device[i].xtype;