From patchwork Fri Feb 25 20:41:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Weiss X-Patchwork-Id: 548332 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7F58CC4332F for ; Fri, 25 Feb 2022 20:42:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236729AbiBYUmf (ORCPT ); Fri, 25 Feb 2022 15:42:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47974 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235733AbiBYUmf (ORCPT ); Fri, 25 Feb 2022 15:42:35 -0500 Received: from mail.z3ntu.xyz (mail.z3ntu.xyz [128.199.32.197]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C1D3B214F99; Fri, 25 Feb 2022 12:42:02 -0800 (PST) Received: from localhost.localdomain (ip-213-127-118-180.ip.prioritytelecom.net [213.127.118.180]) by mail.z3ntu.xyz (Postfix) with ESMTPSA id 54AF4C85A3; Fri, 25 Feb 2022 20:42:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=z3ntu.xyz; s=z3ntu; t=1645821721; bh=adLqyjmfM4NrDZxcK5bywts+iLnmBgxdISb7exeqYho=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=VtYmpQIKxx4OGpRc4NhThBZA3TPsXMZBcnFY1Qe23gBkkzY/+kk/FSV9026bQFyeq ZnQ1IsJvt505aVA1igtyF4MKgThb+W6HcIZpuuLQ3dP4RdALE0wNfz1/8mAsVo+KV+ /t713b4Tzt84vWGYbDpbGx2PbV0M3PDmbLv255l8= From: Luca Weiss To: linux-arm-msm@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, phone-devel@vger.kernel.org, marcel@holtmann.org, Luca Weiss , Johan Hedberg , Luiz Augusto von Dentz , linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 2/2] Bluetooth: hci_bcm: add BCM43430A0 & BCM43430A1 Date: Fri, 25 Feb 2022 21:41:38 +0100 Message-Id: <20220225204138.935022-2-luca@z3ntu.xyz> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220225204138.935022-1-luca@z3ntu.xyz> References: <20220225204138.935022-1-luca@z3ntu.xyz> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Add the compatible for BCM43430A0 bluetooth used in lg-lenok and BCM43430A1 used in asus-sparrow. Signed-off-by: Luca Weiss --- Changes in v2: - add bcm43430a1 too, adjust commit message to reflect that drivers/bluetooth/hci_bcm.c | 2 ++ 1 file changed, 2 insertions(+) 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" },