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 16A76C678D5 for ; Thu, 23 Feb 2023 13:05:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234281AbjBWNF0 (ORCPT ); Thu, 23 Feb 2023 08:05:26 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59738 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234287AbjBWNFZ (ORCPT ); Thu, 23 Feb 2023 08:05:25 -0500 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B483A54A37 for ; Thu, 23 Feb 2023 05:05:17 -0800 (PST) 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 sin.source.kernel.org (Postfix) with ESMTPS id 1E611CE2020 for ; Thu, 23 Feb 2023 13:05:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id ED1FDC433D2; Thu, 23 Feb 2023 13:05:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1677157514; bh=uVog4+eLQsf9qeofd22iYzE0CERGuqS/2mxtMUTXyYM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1b181AJnW+Ix3wK7TdciA05Mf16bqzV9sEfU/jY/EtNo8h+qVL20OJmGLbuShKkg6 l/1WJ7rKoMtmt3Ms0p2jWaI5KqsiGr6g2NOuqDIQMwKi95LeCpxUSBQeLj4uEQeUtl s8rFrNSjQB3zjVpJ9Ckd0Txjj2rKmcbXcLISma0U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lukas Wunner , Matt Ranostay , Kalle Valo Subject: [PATCH 4.19 10/11] wifi: mwifiex: Add missing compatible string for SD8787 Date: Thu, 23 Feb 2023 14:04:51 +0100 Message-Id: <20230223130424.445834680@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230223130424.079732181@linuxfoundation.org> References: <20230223130424.079732181@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Lukas Wunner commit 36dd7a4c6226133b0b7aa92b8e604e688d958d0c upstream. Commit e3fffc1f0b47 ("devicetree: document new marvell-8xxx and pwrseq-sd8787 options") documented a compatible string for SD8787 in the devicetree bindings, but neglected to add it to the mwifiex driver. Fixes: e3fffc1f0b47 ("devicetree: document new marvell-8xxx and pwrseq-sd8787 options") Signed-off-by: Lukas Wunner Cc: stable@vger.kernel.org # v4.11+ Cc: Matt Ranostay Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/320de5005ff3b8fd76be2d2b859fd021689c3681.1674827105.git.lukas@wunner.de Signed-off-by: Greg Kroah-Hartman --- drivers/net/wireless/marvell/mwifiex/sdio.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/wireless/marvell/mwifiex/sdio.c +++ b/drivers/net/wireless/marvell/mwifiex/sdio.c @@ -58,6 +58,7 @@ static struct memory_type_mapping mem_ty }; static const struct of_device_id mwifiex_sdio_of_match_table[] = { + { .compatible = "marvell,sd8787" }, { .compatible = "marvell,sd8897" }, { .compatible = "marvell,sd8997" }, { }