diff options
Diffstat (limited to 'drivers/hid/hid-cypress.c')
-rw-r--r-- | drivers/hid/hid-cypress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-cypress.c b/drivers/hid/hid-cypress.c index 4cd0e2345991..2f0be4c66af7 100644 --- a/drivers/hid/hid-cypress.c +++ b/drivers/hid/hid-cypress.c | |||
@@ -107,13 +107,13 @@ static int cp_probe(struct hid_device *hdev, const struct hid_device_id *id) | |||
107 | 107 | ||
108 | ret = hid_parse(hdev); | 108 | ret = hid_parse(hdev); |
109 | if (ret) { | 109 | if (ret) { |
110 | dev_err(&hdev->dev, "parse failed\n"); | 110 | hid_err(hdev, "parse failed\n"); |
111 | goto err_free; | 111 | goto err_free; |
112 | } | 112 | } |
113 | 113 | ||
114 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); | 114 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
115 | if (ret) { | 115 | if (ret) { |
116 | dev_err(&hdev->dev, "hw start failed\n"); | 116 | hid_err(hdev, "hw start failed\n"); |
117 | goto err_free; | 117 | goto err_free; |
118 | } | 118 | } |
119 | 119 | ||