Skip to content

Commit

Permalink
platform/chrome: wilco_ec: Add newlines to printks
Browse files Browse the repository at this point in the history
printk messages all require newlines, or it looks very odd in the log
when messages are not on different lines. Add them.

Cc: Nick Crews <ncrews@chromium.org>
Cc: Daniel Campello <campello@chromium.org>
Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
  • Loading branch information
Stephen Boyd authored and Enric Balletbo i Serra committed Jan 22, 2020
1 parent 3b0bfd3 commit a532149
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion drivers/platform/chrome/wilco_ec/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static int wilco_ec_probe(struct platform_device *pdev)

ret = wilco_ec_add_sysfs(ec);
if (ret < 0) {
dev_err(dev, "Failed to create sysfs entries: %d", ret);
dev_err(dev, "Failed to create sysfs entries: %d\n", ret);
goto unregister_rtc;
}

Expand Down
8 changes: 4 additions & 4 deletions drivers/platform/chrome/wilco_ec/keyboard_leds.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static int send_kbbl_msg(struct wilco_ec_device *ec,
ret = wilco_ec_mailbox(ec, &msg);
if (ret < 0) {
dev_err(ec->dev,
"Failed sending keyboard LEDs command: %d", ret);
"Failed sending keyboard LEDs command: %d\n", ret);
return ret;
}

Expand All @@ -94,7 +94,7 @@ static int set_kbbl(struct wilco_ec_device *ec, enum led_brightness brightness)

if (response.status) {
dev_err(ec->dev,
"EC reported failure sending keyboard LEDs command: %d",
"EC reported failure sending keyboard LEDs command: %d\n",
response.status);
return -EIO;
}
Expand Down Expand Up @@ -147,7 +147,7 @@ static int kbbl_init(struct wilco_ec_device *ec)

if (response.status) {
dev_err(ec->dev,
"EC reported failure sending keyboard LEDs command: %d",
"EC reported failure sending keyboard LEDs command: %d\n",
response.status);
return -EIO;
}
Expand Down Expand Up @@ -179,7 +179,7 @@ int wilco_keyboard_leds_init(struct wilco_ec_device *ec)
ret = kbbl_exist(ec, &leds_exist);
if (ret < 0) {
dev_err(ec->dev,
"Failed checking keyboard LEDs support: %d", ret);
"Failed checking keyboard LEDs support: %d\n", ret);
return ret;
}
if (!leds_exist)
Expand Down
4 changes: 2 additions & 2 deletions drivers/platform/chrome/wilco_ec/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ static int wilco_ec_transfer(struct wilco_ec_device *ec,
}

if (rs->data_size != EC_MAILBOX_DATA_SIZE) {
dev_dbg(ec->dev, "unexpected packet size (%u != %u)",
dev_dbg(ec->dev, "unexpected packet size (%u != %u)\n",
rs->data_size, EC_MAILBOX_DATA_SIZE);
return -EMSGSIZE;
}

if (rs->data_size < msg->response_size) {
dev_dbg(ec->dev, "EC didn't return enough data (%u < %zu)",
dev_dbg(ec->dev, "EC didn't return enough data (%u < %zu)\n",
rs->data_size, msg->response_size);
return -EMSGSIZE;
}
Expand Down
6 changes: 3 additions & 3 deletions drivers/platform/chrome/wilco_ec/telemetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ static int telem_device_probe(struct platform_device *pdev)
minor = ida_alloc_max(&telem_ida, TELEM_MAX_DEV-1, GFP_KERNEL);
if (minor < 0) {
error = minor;
dev_err(&pdev->dev, "Failed to find minor number: %d", error);
dev_err(&pdev->dev, "Failed to find minor number: %d\n", error);
return error;
}

Expand Down Expand Up @@ -427,14 +427,14 @@ static int __init telem_module_init(void)

ret = class_register(&telem_class);
if (ret) {
pr_err(DRV_NAME ": Failed registering class: %d", ret);
pr_err(DRV_NAME ": Failed registering class: %d\n", ret);
return ret;
}

/* Request the kernel for device numbers, starting with minor=0 */
ret = alloc_chrdev_region(&dev_num, 0, TELEM_MAX_DEV, TELEM_DEV_NAME);
if (ret) {
pr_err(DRV_NAME ": Failed allocating dev numbers: %d", ret);
pr_err(DRV_NAME ": Failed allocating dev numbers: %d\n", ret);
goto destroy_class;
}
telem_major = MAJOR(dev_num);
Expand Down

0 comments on commit a532149

Please sign in to comment.