diff mbox series

[v2,2/2] Bluetooth: hci_bcm: add BCM43430A0 & BCM43430A1

Message ID 20220225204138.935022-2-luca@z3ntu.xyz (mailing list archive)
State Accepted
Commit 01da346c1802f046496845cccd7c871ca35f24a7
Headers show
Series None | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/checkpatch fail [v2,2/2] Bluetooth: hci_bcm: add BCM43430A0 & BCM43430A1\WARNING:UNDOCUMENTED_DT_STRING: DT compatible string "brcm,bcm43430a0-bt" appears un-documented -- check ./Documentation/devicetree/bindings/ #73: FILE: drivers/bluetooth/hci_bcm.c:1516: + { .compatible = "brcm,bcm43430a0-bt" }, WARNING:UNDOCUMENTED_DT_STRING: DT compatible string "brcm,bcm43430a1-bt" appears un-documented -- check ./Documentation/devicetree/bindings/ #74: FILE: drivers/bluetooth/hci_bcm.c:1517: + { .compatible = "brcm,bcm43430a1-bt" }, total: 0 errors, 2 warnings, 8 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/12760910.patch has style problems, please review. NOTE: Ignored message types: UNKNOWN_COMMIT_ID NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS.
tedd_an/gitlint success Gitlint PASS
tedd_an/subjectprefix success PASS
tedd_an/buildkernel success Build Kernel PASS
tedd_an/buildkernel32 success Build Kernel32 PASS
tedd_an/incremental_build success Pass
tedd_an/testrunnersetup success Test Runner Setup PASS
tedd_an/testrunnerl2cap-tester success Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnerbnep-tester success Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnermgmt-tester success Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnerrfcomm-tester success Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnersco-tester success Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnersmp-tester success Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunneruserchan-tester success Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0

Commit Message

Luca Weiss Feb. 25, 2022, 8:41 p.m. UTC
Add the compatible for BCM43430A0 bluetooth used in lg-lenok and
BCM43430A1 used in asus-sparrow.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
---
Changes in v2:
- add bcm43430a1 too, adjust commit message to reflect that

 drivers/bluetooth/hci_bcm.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Marcel Holtmann March 4, 2022, 5:21 p.m. UTC | #1
Hi Luca,

> Add the compatible for BCM43430A0 bluetooth used in lg-lenok and
> BCM43430A1 used in asus-sparrow.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> ---
> Changes in v2:
> - add bcm43430a1 too, adjust commit message to reflect that
> 
> drivers/bluetooth/hci_bcm.c | 2 ++
> 1 file changed, 2 insertions(+)

patch has been applied to bluetooth-next tree.

Regards

Marcel
diff mbox series

Patch

diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c
index d634a27bc850..bd090d92a548 100644
--- a/drivers/bluetooth/hci_bcm.c
+++ b/drivers/bluetooth/hci_bcm.c
@@ -1513,6 +1513,8 @@  static const struct of_device_id bcm_bluetooth_of_match[] = {
 	{ .compatible = "brcm,bcm4330-bt" },
 	{ .compatible = "brcm,bcm4334-bt" },
 	{ .compatible = "brcm,bcm4345c5" },
+	{ .compatible = "brcm,bcm43430a0-bt" },
+	{ .compatible = "brcm,bcm43430a1-bt" },
 	{ .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },
 	{ .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data },
 	{ .compatible = "brcm,bcm4335a0" },