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

greybus: raw: use hexadecimal notation for request types

Use hexadecimal notation for request types in log messages.
Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 41993cd5
......@@ -97,7 +97,7 @@ static int gb_raw_request_handler(struct gb_operation *op)
u32 len;
if (op->type != GB_RAW_TYPE_SEND) {
dev_err(dev, "unknown request type %d\n", op->type);
dev_err(dev, "unknown request type 0x%02x\n", op->type);
return -EINVAL;
}
......
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