From: Frieder Schrempf <frieder.schrempf@kontron.de>
To: linux-mtd@lists.infradead.org, boris.brezillon@bootlin.com,
linux-spi@vger.kernel.org
Cc: yogeshnarayan.gaur@nxp.com,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Tony Lindgren" <tony@atomide.com>,
miquel.raynal@bootlin.com, "Stefan Agner" <stefan@agner.ch>,
"Eric Anholt" <eric@anholt.net>,
han.xu@nxp.com, david.wolfe@nxp.com,
"Stefan Wahren" <stefan.wahren@i2se.com>,
richard@nod.at, "Russell King" <linux@armlinux.org.uk>,
marek.vasut@gmail.com,
"Frieder Schrempf" <frieder.schrempf@exceet.de>,
"NXP Linux Team" <linux-imx@nxp.com>,
"Alexandre Torgue" <alexandre.torgue@st.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Olof Johansson" <olof@lixom.net>,
broonie@kernel.org, "Simon Horman" <horms+renesas@verge.net.au>,
linux-arm-kernel@lists.infradead.org, dwmw2@infradead.org,
linux-kernel@vger.kernel.org,
"Yannick Fertré" <yannick.fertre@st.com>,
prabhakar.kushwaha@nxp.com,
"Pengutronix Kernel Team" <kernel@pengutronix.de>
Subject: [PATCH v4 06/10] ARM: defconfig: Use the new FSL QSPI driver under the SPI framework
Date: Wed, 7 Nov 2018 15:43:23 +0100 [thread overview]
Message-ID: <1541601809-16950-7-git-send-email-frieder.schrempf@kontron.de> (raw)
In-Reply-To: <1541601809-16950-1-git-send-email-frieder.schrempf@kontron.de>
From: Frieder Schrempf <frieder.schrempf@exceet.de>
The new driver at spi/spi-fsl-qspi.c replaces the old SPI NOR driver
at mtd/fsl-quadspi.c. Switch to the new driver in the defconfigs.
Signed-off-by: Frieder Schrempf <frieder.schrempf@exceet.de>
---
arch/arm/configs/imx_v6_v7_defconfig | 2 +-
arch/arm/configs/multi_v7_defconfig | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/configs/imx_v6_v7_defconfig b/arch/arm/configs/imx_v6_v7_defconfig
index 1ad5736..1741d87 100644
--- a/arch/arm/configs/imx_v6_v7_defconfig
+++ b/arch/arm/configs/imx_v6_v7_defconfig
@@ -113,7 +113,6 @@ CONFIG_MTD_NAND_GPMI_NAND=y
CONFIG_MTD_NAND_VF610_NFC=y
CONFIG_MTD_NAND_MXC=y
CONFIG_MTD_SPI_NOR=y
-CONFIG_SPI_FSL_QUADSPI=y
CONFIG_MTD_UBI=y
CONFIG_MTD_UBI_FASTMAP=y
CONFIG_MTD_UBI_BLOCK=y
@@ -204,6 +203,7 @@ CONFIG_I2C_ALGOPCA=m
CONFIG_I2C_GPIO=y
CONFIG_I2C_IMX=y
CONFIG_SPI=y
+CONFIG_SPI_FSL_QSPI=y
CONFIG_SPI_GPIO=y
CONFIG_SPI_IMX=y
CONFIG_SPI_FSL_DSPI=y
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 1c76168..faddf29 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -193,7 +193,6 @@ CONFIG_MTD_NAND_BRCMNAND=y
CONFIG_MTD_NAND_VF610_NFC=y
CONFIG_MTD_NAND_DAVINCI=y
CONFIG_MTD_SPI_NOR=y
-CONFIG_SPI_FSL_QUADSPI=m
CONFIG_MTD_UBI=y
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_RAM=y
@@ -383,6 +382,7 @@ CONFIG_SPI_BCM2835=y
CONFIG_SPI_BCM2835AUX=y
CONFIG_SPI_CADENCE=y
CONFIG_SPI_DAVINCI=y
+CONFIG_SPI_FSL_QSPI=m
CONFIG_SPI_GPIO=m
CONFIG_SPI_FSL_DSPI=m
CONFIG_SPI_OMAP24XX=y
--
2.7.4
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
next prev parent reply other threads:[~2018-11-07 14:43 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-07 14:43 [PATCH v4 00/10] Port the FSL QSPI driver to the SPI framework Frieder Schrempf
2018-11-07 14:43 ` [PATCH v4 01/10] spi: Add a driver for the Freescale/NXP QuadSPI controller Frieder Schrempf
2018-11-13 8:22 ` Yogesh Narayan Gaur
2018-11-13 8:30 ` Yogesh Narayan Gaur
2018-11-13 13:56 ` Schrempf Frieder
2018-11-07 14:43 ` [PATCH v4 02/10] dt-bindings: spi: Move the bindings for the FSL QSPI driver Frieder Schrempf
2018-11-08 8:37 ` Boris Brezillon
2018-11-08 8:54 ` Schrempf Frieder
2018-11-07 14:43 ` [PATCH v4 03/10] dt-bindings: spi: Adjust " Frieder Schrempf
2018-11-08 8:41 ` Boris Brezillon
2018-11-08 8:48 ` Schrempf Frieder
2018-11-07 14:43 ` [PATCH v4 04/10] ARM: dts: Reflect change of FSL QSPI driver and remove unused properties Frieder Schrempf
2018-11-07 14:43 ` [PATCH v4 05/10] arm64: " Frieder Schrempf
2018-11-07 14:43 ` Frieder Schrempf [this message]
2018-11-07 16:20 ` [PATCH v4 06/10] ARM: defconfig: Use the new FSL QSPI driver under the SPI framework Olof Johansson
2018-11-07 16:36 ` Schrempf Frieder
2018-11-07 23:08 ` Olof Johansson
2018-11-08 8:34 ` Boris Brezillon
2018-11-12 10:46 ` Schrempf Frieder
2018-11-12 10:56 ` Boris Brezillon
2018-11-12 11:24 ` Schrempf Frieder
2018-11-07 14:43 ` [PATCH v4 07/10] mtd: fsl-quadspi: Remove the driver as it was replaced by spi-fsl-qspi.c Frieder Schrempf
2018-11-07 14:43 ` [PATCH v4 08/10] ARM: dts: ls1021a: Remove fsl, qspi-has-second-chip as it is not used Frieder Schrempf
2018-11-07 14:43 ` [PATCH v4 09/10] ARM64: dts: ls1046a: " Frieder Schrempf
2018-11-07 14:43 ` [PATCH v4 10/10] MAINTAINERS: Move the Freescale QSPI driver to the SPI framework Frieder Schrempf
2018-11-07 14:53 ` [PATCH v4 00/10] Port the FSL " Boris Brezillon
2018-11-07 15:07 ` Schrempf Frieder
2018-11-07 15:10 ` Boris Brezillon
2018-11-08 7:59 ` Schrempf Frieder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1541601809-16950-7-git-send-email-frieder.schrempf@kontron.de \
--to=frieder.schrempf@kontron.de \
--cc=alexandre.torgue@st.com \
--cc=arnd@arndb.de \
--cc=boris.brezillon@bootlin.com \
--cc=broonie@kernel.org \
--cc=david.wolfe@nxp.com \
--cc=dwmw2@infradead.org \
--cc=eric@anholt.net \
--cc=frieder.schrempf@exceet.de \
--cc=geert+renesas@glider.be \
--cc=han.xu@nxp.com \
--cc=horms+renesas@verge.net.au \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=olof@lixom.net \
--cc=prabhakar.kushwaha@nxp.com \
--cc=richard@nod.at \
--cc=s.hauer@pengutronix.de \
--cc=stefan.wahren@i2se.com \
--cc=stefan@agner.ch \
--cc=tony@atomide.com \
--cc=yannick.fertre@st.com \
--cc=yogeshnarayan.gaur@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).