From mboxrd@z Thu Jan 1 00:00:00 1970 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 97173C19F2D for ; Tue, 9 Aug 2022 18:13:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343678AbiHISNw (ORCPT ); Tue, 9 Aug 2022 14:13:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33490 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345528AbiHISLO (ORCPT ); Tue, 9 Aug 2022 14:11:14 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4E57C2A96F; Tue, 9 Aug 2022 11:04:29 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id BD17B6113A; Tue, 9 Aug 2022 18:04:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3948EC4347C; Tue, 9 Aug 2022 18:04:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1660068269; bh=VHvmkThlg35jBCPjoeRwMSnizj75A86It0QZQylbq2k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=vVTiaCVKGM9M3CJ6Mkp61Y7ZHR9lAtT3CcdpSlnX/OkN4C5p/6kOxKzYc/6rmwHeb UbdLOV11Iu1hHjWDYJw1x/2fi1foQAZCNCo8AhDXZvnR7YiaFzmIrfe+4V5PBME8wz RHbgMmuwQtBKjVAaDzY2S6y1M3nzqABOO02kYSxQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Hakan Jansson , Linus Walleij , Luiz Augusto von Dentz Subject: [PATCH 5.10 14/23] Bluetooth: hci_bcm: Add DT compatible for CYW55572 Date: Tue, 9 Aug 2022 20:00:32 +0200 Message-Id: <20220809175513.367997567@linuxfoundation.org> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20220809175512.853274191@linuxfoundation.org> References: <20220809175512.853274191@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Hakan Jansson commit f8cad62002a7699fd05a23b558b980b5a77defe0 upstream. CYW55572 is a Wi-Fi + Bluetooth combo device from Infineon. Signed-off-by: Hakan Jansson Reviewed-by: Linus Walleij Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Greg Kroah-Hartman --- drivers/bluetooth/hci_bcm.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/bluetooth/hci_bcm.c +++ b/drivers/bluetooth/hci_bcm.c @@ -1492,6 +1492,7 @@ static const struct of_device_id bcm_blu { .compatible = "brcm,bcm4349-bt", .data = &bcm43438_device_data }, { .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data }, { .compatible = "brcm,bcm4335a0" }, + { .compatible = "infineon,cyw55572-bt" }, { }, }; MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);