From: Johan Hovold Date: Wed, 2 Mar 2016 17:00:51 +0000 (+0100) Subject: greybus: raw: use hexadecimal notation for request types X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c7733b6167750a42da81133189e9cca33ce7584f;p=linux.git greybus: raw: use hexadecimal notation for request types Use hexadecimal notation for request types in log messages. Signed-off-by: Johan Hovold Reviewed-by: Viresh Kumar Reviewed-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/raw.c b/drivers/staging/greybus/raw.c index 338139e815af2..729d258115685 100644 --- a/drivers/staging/greybus/raw.c +++ b/drivers/staging/greybus/raw.c @@ -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; }