OSDN Git Service

Bluetooth: fix an error code in hci_register_dev()
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 8 Jun 2022 13:46:13 +0000 (16:46 +0300)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Fri, 22 Jul 2022 00:06:49 +0000 (17:06 -0700)
Preserve the error code from hci_register_suspend_notifier().  Don't
return success.

Fixes: d6bb2a91f95b ("Bluetooth: Unregister suspend with userchannel")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/hci_core.c

index 1ace311..94f38f6 100644 (file)
@@ -2647,7 +2647,8 @@ int hci_register_dev(struct hci_dev *hdev)
        hci_sock_dev_event(hdev, HCI_DEV_REG);
        hci_dev_hold(hdev);
 
-       if (hci_register_suspend_notifier(hdev))
+       error = hci_register_suspend_notifier(hdev);
+       if (error)
                goto err_wqueue;
 
        queue_work(hdev->req_workqueue, &hdev->power_on);