提交 2be1149e 编写于 作者: A Anton Protopopov 提交者: Marcel Holtmann

Bluetooth: hci_intel: Fix a wrong comparison

A return value of the intel_wait_booting() function compared with
a constant ETIMEDOUT instead of -ETIMEDOUT.
Signed-off-by: NAnton Protopopov <a.s.protopopov@gmail.com>
Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
上级 b6e402fc
...@@ -488,7 +488,7 @@ static int intel_set_baudrate(struct hci_uart *hu, unsigned int speed) ...@@ -488,7 +488,7 @@ static int intel_set_baudrate(struct hci_uart *hu, unsigned int speed)
clear_bit(STATE_BOOTING, &intel->flags); clear_bit(STATE_BOOTING, &intel->flags);
/* In case of timeout, try to continue anyway */ /* In case of timeout, try to continue anyway */
if (err && err != ETIMEDOUT) if (err && err != -ETIMEDOUT)
return err; return err;
bt_dev_info(hdev, "Change controller speed to %d", speed); bt_dev_info(hdev, "Change controller speed to %d", speed);
...@@ -581,7 +581,7 @@ static int intel_setup(struct hci_uart *hu) ...@@ -581,7 +581,7 @@ static int intel_setup(struct hci_uart *hu)
clear_bit(STATE_BOOTING, &intel->flags); clear_bit(STATE_BOOTING, &intel->flags);
/* In case of timeout, try to continue anyway */ /* In case of timeout, try to continue anyway */
if (err && err != ETIMEDOUT) if (err && err != -ETIMEDOUT)
return err; return err;
set_bit(STATE_BOOTLOADER, &intel->flags); set_bit(STATE_BOOTLOADER, &intel->flags);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册