From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com ([134.134.136.65]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1e0U8F-0005Df-QR for linux-mtd@lists.infradead.org; Fri, 06 Oct 2017 15:01:45 +0000 Reply-To: thor.thayer@linux.intel.com Subject: Re: [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64 To: Marek Vasut , cyrille.pitchen@wedev4u.fr, dwmw2@infradead.org, computersforpeace@gmail.com, boris.brezillon@free-electrons.com, richard@nod.at Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org References: <1506701269-29652-1-git-send-email-thor.thayer@linux.intel.com> <6f21cd6f-4ad7-b611-c22f-45f4ec0232ab@linux.intel.com> From: Thor Thayer Message-ID: Date: Fri, 6 Oct 2017 10:04:25 -0500 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 10/06/2017 10:00 AM, Marek Vasut wrote: > On 10/06/2017 04:56 PM, Thor Thayer wrote: >> gentle ping... >> >> >> On 09/29/2017 11:07 AM, thor.thayer@linux.intel.com wrote: >>> From: Thor Thayer >>> >>> Allow ARM64 support for the Cadence QSPI interface by >>> adding ARM64 as a dependency. >>> >>> Signed-off-by: Thor Thayer > > Reviewed-by: Marek Vasut > > I presume it was tested on Stratix 10 ? > Yes, that is correct. Thanks for the review! >>> --- >>>   drivers/mtd/spi-nor/Kconfig | 2 +- >>>   1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig >>> index 69c638dd0484..f26aaa6d1430 100644 >>> --- a/drivers/mtd/spi-nor/Kconfig >>> +++ b/drivers/mtd/spi-nor/Kconfig >>> @@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI >>>     config SPI_CADENCE_QUADSPI >>>       tristate "Cadence Quad SPI controller" >>> -    depends on OF && (ARM || COMPILE_TEST) >>> +    depends on OF && (ARM || ARM64 || COMPILE_TEST) >>>       help >>>         Enable support for the Cadence Quad SPI Flash controller. >>> >> > >