aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/nokia_h4p
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-03-15 14:21:07 +0200
committerPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>2014-03-16 20:32:11 -0700
commit4f7dcd615dd75c25c99fcd92d746078901a8baa0 (patch)
tree8d3e11d2c303028a0b79ae546f6862939b1798fd /drivers/staging/nokia_h4p
parentstaging: frontier: Fix quoted string split across lines (diff)
downloadlinux-dev-4f7dcd615dd75c25c99fcd92d746078901a8baa0.tar.xz
linux-dev-4f7dcd615dd75c25c99fcd92d746078901a8baa0.zip
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 <gulsah.1004@gmail.com> Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Diffstat (limited to 'drivers/staging/nokia_h4p')
-rw-r--r--drivers/staging/nokia_h4p/nokia_core.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/staging/nokia_h4p/nokia_core.c b/drivers/staging/nokia_h4p/nokia_core.c
index 5da84b06eff3..641528e7fe7b 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;
}