Input: wacom - use hid_info instead of plain dev_info

Removes one more need of usb and intf.

Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Reviewed-by: Jason Gerecke <killertofu@gmail.com>
Tested-by: Jason Gerecke <killertofu@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
Benjamin Tissoires 2014-07-24 13:01:56 -07:00 committed by Dmitry Torokhov
parent dd3181a70c
commit e2114ce1af

View file

@ -1104,12 +1104,11 @@ static void wacom_wireless_work(struct work_struct *work)
wacom_unregister_inputs(wacom2);
if (wacom_wac->pid == 0) {
dev_info(&wacom->intf->dev, "wireless tablet disconnected\n");
hid_info(wacom->hdev, "wireless tablet disconnected\n");
} else {
const struct hid_device_id *id = wacom_ids;
dev_info(&wacom->intf->dev,
"wireless tablet connected with PID %x\n",
hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
wacom_wac->pid);
while (id->bus) {
@ -1120,8 +1119,7 @@ static void wacom_wireless_work(struct work_struct *work)
}
if (!id->bus) {
dev_info(&wacom->intf->dev,
"ignoring unknown PID.\n");
hid_info(wacom->hdev, "ignoring unknown PID.\n");
return;
}