Message ID | 20230227235255.266852-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | Bluetooth: hci_sync: Fix smatch warning | expand |
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 27 Feb 2023 15:52:55 -0800 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This fixes the following new warning: > > net/bluetooth/hci_sync.c:2403 hci_pause_addr_resolution() warn: missing > error code? 'err' > > [...] Here is the summary with links: - Bluetooth: hci_sync: Fix smatch warning https://git.kernel.org/bluetooth/bluetooth-next/c/80fb206d2840 You are awesome, thank you!
diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c index 7e152e912e8c..561a519a11bd 100644 --- a/net/bluetooth/hci_sync.c +++ b/net/bluetooth/hci_sync.c @@ -2400,7 +2400,7 @@ static int hci_pause_addr_resolution(struct hci_dev *hdev) /* Return if address resolution is disabled and RPA is not used. */ if (!err && scan_use_rpa(hdev)) - return err; + return 0; hci_resume_advertising_sync(hdev); return err;