Skip to content

Commit

Permalink
USB: input: cm109.c: fix up dev_err() usage
Browse files Browse the repository at this point in the history
We should always reference the input device for dev_err(), not the USB
device.  Fix up the places where I got this wrong.

Reported-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
CC: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed May 2, 2012
1 parent 39e85a2 commit 388fd20
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/input/misc/cm109.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ static void cm109_submit_buzz_toggle(struct cm109_dev *dev)

error = usb_submit_urb(dev->urb_ctl, GFP_ATOMIC);
if (error)
dev_err(&dev->intf->dev,
dev_err(&dev->idev->dev,
"%s: usb_submit_urb (urb_ctl) failed %d\n",
__func__, error);
}
Expand All @@ -351,7 +351,7 @@ static void cm109_urb_irq_callback(struct urb *urb)
if (status) {
if (status == -ESHUTDOWN)
return;
dev_err(&dev->intf->dev, "%s: urb status %d\n", __func__, status);
dev_err(&dev->idev->dev, "%s: urb status %d\n", __func__, status);
}

/* Special keys */
Expand Down Expand Up @@ -398,7 +398,7 @@ static void cm109_urb_irq_callback(struct urb *urb)

error = usb_submit_urb(dev->urb_ctl, GFP_ATOMIC);
if (error)
dev_err(&dev->intf->dev,
dev_err(&dev->idev->dev,
"%s: usb_submit_urb (urb_ctl) failed %d\n",
__func__, error);
}
Expand All @@ -419,7 +419,7 @@ static void cm109_urb_ctl_callback(struct urb *urb)
dev->ctl_data->byte[3]);

if (status)
dev_err(&dev->intf->dev, "%s: urb status %d\n", __func__, status);
dev_err(&dev->idev->dev, "%s: urb status %d\n", __func__, status);

spin_lock(&dev->ctl_submit_lock);

Expand All @@ -436,7 +436,7 @@ static void cm109_urb_ctl_callback(struct urb *urb)
dev->irq_urb_pending = 1;
error = usb_submit_urb(dev->urb_irq, GFP_ATOMIC);
if (error)
dev_err(&dev->intf->dev,
dev_err(&dev->idev->dev,
"%s: usb_submit_urb (urb_irq) failed %d\n",
__func__, error);
}
Expand Down Expand Up @@ -480,7 +480,7 @@ static void cm109_toggle_buzzer_sync(struct cm109_dev *dev, int on)
dev->ctl_data,
USB_PKT_LEN, USB_CTRL_SET_TIMEOUT);
if (error < 0 && error != -EINTR)
dev_err(&dev->intf->dev, "%s: usb_control_msg() failed %d\n",
dev_err(&dev->idev->dev, "%s: usb_control_msg() failed %d\n",
__func__, error);
}

Expand Down

0 comments on commit 388fd20

Please sign in to comment.