Commit b67f2d13 authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman

greybus: hid: replace pr_err with dev_err

Replace pr_err with dev_err and clean up error messages somewhat.
Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Reviewed-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent fef96a22
...@@ -139,10 +139,12 @@ static int gb_hid_set_report(struct gb_hid *ghid, u8 report_type, u8 report_id, ...@@ -139,10 +139,12 @@ static int gb_hid_set_report(struct gb_hid *ghid, u8 report_type, u8 report_id,
memcpy(request->report, buf, len); memcpy(request->report, buf, len);
ret = gb_operation_request_send_sync(operation); ret = gb_operation_request_send_sync(operation);
if (ret) if (ret) {
pr_err("%s: operation failed (%d)\n", __func__, ret); dev_err(&operation->connection->dev,
else "failed to set report: %d\n", ret);
} else {
ret = len; ret = len;
}
gb_operation_destroy(operation); gb_operation_destroy(operation);
return ret; return ret;
...@@ -156,18 +158,21 @@ static void gb_hid_irq_handler(u8 type, struct gb_operation *op) ...@@ -156,18 +158,21 @@ static void gb_hid_irq_handler(u8 type, struct gb_operation *op)
int ret, size; int ret, size;
if (type != GB_HID_TYPE_IRQ_EVENT) { if (type != GB_HID_TYPE_IRQ_EVENT) {
pr_err("unsupported unsolicited request\n"); dev_err(&connection->dev,
"unsupported unsolicited request\n");
return; return;
} }
ret = gb_operation_response_send(op, 0); ret = gb_operation_response_send(op, 0);
if (ret) if (ret) {
pr_err("%s: error %d sending response status %d\n", __func__, dev_err(&connection->dev,
ret, 0); "failed to send response status %d: %d\n",
0, ret);
}
size = request->report[0] | request->report[1] << 8; size = request->report[0] | request->report[1] << 8;
if (!size) { if (!size) {
pr_err("%s: size can't be zero.\n", __func__); dev_err(&connection->dev, "bad report size: %d\n", size);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment