Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}