From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 40ACD2584 for ; Thu, 23 Feb 2023 13:11:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BBB2BC4339B; Thu, 23 Feb 2023 13:11:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1677157870; bh=uVog4+eLQsf9qeofd22iYzE0CERGuqS/2mxtMUTXyYM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QsAf8YID2ta+2l2GdG9cMT9uf+fgwMCxnhMIjWhZ2HLwHt1+Q7wbhyitYlTptbMF7 HAj9Fw18oQaxc4V+Dpfpx0ksMarlPPpF5pbfC1fFaEJnkeLqul03yLhZuRtLA1dVSP MMuqaF/d9nyjdppw9cDD7yqCBYSbBYCiMGXqYIf4= 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 5.4 16/18] wifi: mwifiex: Add missing compatible string for SD8787 Date: Thu, 23 Feb 2023 14:07:01 +0100 Message-Id: <20230223130426.298798258@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230223130425.680784802@linuxfoundation.org> References: <20230223130425.680784802@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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" }, { }