Commit 4f7dcd61 authored by Gulsah Kose's avatar Gulsah Kose Committed by Peter P Waskiewicz Jr

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: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent e563e464
...@@ -785,24 +785,27 @@ static int hci_h4p_bt_wakeup_test(struct hci_h4p_info *info) ...@@ -785,24 +785,27 @@ static int hci_h4p_bt_wakeup_test(struct hci_h4p_info *info)
gpio_set_value(info->bt_wakeup_gpio, 0); gpio_set_value(info->bt_wakeup_gpio, 0);
err = hci_h4p_wait_for_cts(info, 0, 100); err = hci_h4p_wait_for_cts(info, 0, 100);
if (err) { if (err) {
dev_warn(info->dev, "bt_wakeup_test: fail: " dev_warn(info->dev,
"CTS low timed out: %d\n", err); "bt_wakeup_test: fail: CTS low timed out: %d\n",
err);
goto out; goto out;
} }
gpio_set_value(info->bt_wakeup_gpio, 1); gpio_set_value(info->bt_wakeup_gpio, 1);
err = hci_h4p_wait_for_cts(info, 1, 100); err = hci_h4p_wait_for_cts(info, 1, 100);
if (err) { if (err) {
dev_warn(info->dev, "bt_wakeup_test: fail: " dev_warn(info->dev,
"CTS high timed out: %d\n", err); "bt_wakeup_test: fail: CTS high timed out: %d\n",
err);
goto out; goto out;
} }
gpio_set_value(info->bt_wakeup_gpio, 0); gpio_set_value(info->bt_wakeup_gpio, 0);
err = hci_h4p_wait_for_cts(info, 0, 100); err = hci_h4p_wait_for_cts(info, 0, 100);
if (err) { if (err) {
dev_warn(info->dev, "bt_wakeup_test: fail: " dev_warn(info->dev,
"CTS re-low timed out: %d\n", err); "bt_wakeup_test: fail: CTS re-low timed out: %d\n",
err);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment