Skip to content

Commit

Permalink
HID: roccat: fix wrong hid_err usage on struct usb_device
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Achatz <erazor_de@users.sourceforge.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Stefan Achatz authored and Jiri Kosina committed Jun 28, 2012
1 parent 4728f2d commit 4ec141a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/hid/hid-roccat-kone.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static int kone_check_write(struct usb_device *usb_dev)
return 0;

/* unknown answer */
hid_err(usb_dev, "got retval %d when checking write\n", data);
dev_err(&usb_dev->dev, "got retval %d when checking write\n", data);
return -EIO;
}

Expand Down Expand Up @@ -503,7 +503,7 @@ static ssize_t kone_sysfs_set_tcu(struct device *dev,

retval = kone_set_settings(usb_dev, &kone->settings);
if (retval) {
hid_err(usb_dev, "couldn't set tcu state\n");
dev_err(&usb_dev->dev, "couldn't set tcu state\n");
/*
* try to reread valid settings into buffer overwriting
* first error code
Expand All @@ -519,7 +519,7 @@ static ssize_t kone_sysfs_set_tcu(struct device *dev,

retval = size;
exit_no_settings:
hid_err(usb_dev, "couldn't read settings\n");
dev_err(&usb_dev->dev, "couldn't read settings\n");
exit_unlock:
mutex_unlock(&kone->kone_lock);
return retval;
Expand Down

0 comments on commit 4ec141a

Please sign in to comment.