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 14094C7EE22 for ; Sun, 7 May 2023 00:31:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230418AbjEGAbO (ORCPT ); Sat, 6 May 2023 20:31:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54126 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230431AbjEGAbG (ORCPT ); Sat, 6 May 2023 20:31:06 -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 7E4781A1D1; Sat, 6 May 2023 17:30:53 -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 15CF3609AD; Sun, 7 May 2023 00:30:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3E87C4339B; Sun, 7 May 2023 00:30:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1683419450; bh=DJugA/gi0HDfnlA98AYwhyAVdhZMFQgHuFck+8tKJ40=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nJz09BxwyyMcSOt6IPt4EtRvzkgtne7LUEPZrNP4PO2GZMPAxQZNUOrIkwbPAacon 7bCCMx4HGnADm28PYqFPphDp1tlmlrydy6fKXrflRuNp/mxQ246SbtG6qaGcYhgtYg gWaREvCiiPiizCWf9xs5oH2zJURP45y3gPdV6VEZW7KPiiNMnzoCDeRWbz9G08T284 qtrrCKFCsidQmbNnmp3z0Lz5CrH63GsGwdFHOUCkyK6HPC1sOxWEnWl2bXJCLqY3yn Jo5HLiaDUuavWVthA8ubfKLMEInng5/x7YzrmwkB1p0JIxv5PR5K/y7y0/mKatYtiX nDXUjuLInsqWg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Mika Westerberg , Mark Brown , Sasha Levin , linux-spi@vger.kernel.org Subject: [PATCH AUTOSEL 6.3 09/24] spi: intel-pci: Add support for Meteor Lake-S SPI serial flash Date: Sat, 6 May 2023 20:30:05 -0400 Message-Id: <20230507003022.4070535-9-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230507003022.4070535-1-sashal@kernel.org> References: <20230507003022.4070535-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org From: Mika Westerberg [ Upstream commit c2912d42e86e494935722669e4d9eade69649072 ] Intel Meteor Lake-S has the same SPI serial flash controller as Meteor Lake-P. Add Meteor Lake-S PCI ID to the driver list of supported devices. Signed-off-by: Mika Westerberg Link: https://lore.kernel.org/r/20230331052812.39983-1-mika.westerberg@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- drivers/spi/spi-intel-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-intel-pci.c b/drivers/spi/spi-intel-pci.c index 4d69e320d0185..a7381e774b953 100644 --- a/drivers/spi/spi-intel-pci.c +++ b/drivers/spi/spi-intel-pci.c @@ -83,6 +83,7 @@ static const struct pci_device_id intel_spi_pci_ids[] = { { PCI_VDEVICE(INTEL, 0xa2a4), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa324), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa3a4), (unsigned long)&cnl_info }, + { PCI_VDEVICE(INTEL, 0xae23), (unsigned long)&cnl_info }, { }, }; MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids); -- 2.39.2