From: Gulsah Kose Date: Sat, 15 Mar 2014 12:21:07 +0000 (+0200) Subject: staging: nokia_h4p: Fix quoted string split across lines X-Git-Tag: v4.14-rc1~7811^2~366 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f7dcd615dd75c25c99fcd92d746078901a8baa0;p=platform%2Fkernel%2Flinux-rpi.git staging: nokia_h4p: Fix quoted string split across lines This patch fixes "quoted string split across lines warning" warning in nokia_core.c Signed-off-by: Gulsah Kose Signed-off-by: Peter P Waskiewicz Jr --- diff --git a/drivers/staging/nokia_h4p/nokia_core.c b/drivers/staging/nokia_h4p/nokia_core.c index 5da84b0..641528e 100644 --- a/drivers/staging/nokia_h4p/nokia_core.c +++ b/drivers/staging/nokia_h4p/nokia_core.c @@ -785,24 +785,27 @@ static int hci_h4p_bt_wakeup_test(struct hci_h4p_info *info) gpio_set_value(info->bt_wakeup_gpio, 0); err = hci_h4p_wait_for_cts(info, 0, 100); if (err) { - dev_warn(info->dev, "bt_wakeup_test: fail: " - "CTS low timed out: %d\n", err); + dev_warn(info->dev, + "bt_wakeup_test: fail: CTS low timed out: %d\n", + err); goto out; } gpio_set_value(info->bt_wakeup_gpio, 1); err = hci_h4p_wait_for_cts(info, 1, 100); if (err) { - dev_warn(info->dev, "bt_wakeup_test: fail: " - "CTS high timed out: %d\n", err); + dev_warn(info->dev, + "bt_wakeup_test: fail: CTS high timed out: %d\n", + err); goto out; } gpio_set_value(info->bt_wakeup_gpio, 0); err = hci_h4p_wait_for_cts(info, 0, 100); if (err) { - dev_warn(info->dev, "bt_wakeup_test: fail: " - "CTS re-low timed out: %d\n", err); + dev_warn(info->dev, + "bt_wakeup_test: fail: CTS re-low timed out: %d\n", + err); goto out; }