Message ID | 20240715015109.239742-2-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 84f9288208dfcd955446060a53add15b9e01af4e |
Headers | show |
Series | [v2] Bluetooth: hci_qca: Fix build error | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | fail | error: patch failed: drivers/bluetooth/hci_qca.c:2499 error: drivers/bluetooth/hci_qca.c: patch does not apply hint: Use 'git am --show-current-patch' to see the failed patch |
This is an automated email and please do not reply to this email. Dear Submitter, Thank you for submitting the patches to the linux bluetooth mailing list. While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository. ----- Output ----- error: patch failed: drivers/bluetooth/hci_qca.c:2499 error: drivers/bluetooth/hci_qca.c: patch does not apply hint: Use 'git am --show-current-patch' to see the failed patch Please resolve the issue and submit the patches again. --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Sun, 14 Jul 2024 21:51:04 -0400 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This fixes the following build error introduced by a887c8dede8e > ("Bluetooth: hci_qca: schedule a devm action for disabling the clock"): > > drivers/bluetooth/hci_qca.c: In function ‘qca_serdev_remove’: > drivers/bluetooth/hci_qca.c:2501:2: error: label at end of compound statement > 2501 | default: > | ^~~~~~~ > > [...] Here is the summary with links: - [v2] Bluetooth: hci_qca: Fix build error https://git.kernel.org/bluetooth/bluetooth-next/c/84f9288208df You are awesome, thank you!
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c index 030153d468bf..ca6466676902 100644 --- a/drivers/bluetooth/hci_qca.c +++ b/drivers/bluetooth/hci_qca.c @@ -2499,6 +2499,7 @@ static void qca_serdev_remove(struct serdev_device *serdev) qca_power_shutdown(&qcadev->serdev_hu); break; default: + break; } hci_uart_unregister_device(&qcadev->serdev_hu);