summaryrefslogtreecommitdiff
path: root/board/freescale/mx7dsabresd
diff options
context:
space:
mode:
authorPeng Fan <Peng.Fan@freescale.com>2015-03-20 14:05:07 +0800
committerPeng Fan <Peng.Fan@freescale.com>2015-04-29 15:02:00 +0800
commitaf3ff6334d1b7b0e1e17311edba599eae2a5bd4d (patch)
treeea33347c57a2a2b7a73141d6ac8fdc379f0bd344 /board/freescale/mx7dsabresd
parenta66ffc1f71a1f1c007f546f62ea7d8bd99e0d362 (diff)
downloadu-boot-imx-af3ff6334d1b7b0e1e17311edba599eae2a5bd4d.zip
u-boot-imx-af3ff6334d1b7b0e1e17311edba599eae2a5bd4d.tar.gz
u-boot-imx-af3ff6334d1b7b0e1e17311edba599eae2a5bd4d.tar.bz2
MLK-10774-37 imx:mx7d fix qspi probe error
We should use CONFIG_FSL_QSPI, but not CONFIG_QSPI Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'board/freescale/mx7dsabresd')
-rw-r--r--board/freescale/mx7dsabresd/mx7dsabresd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c
index f7188af..a653c08 100644
--- a/board/freescale/mx7dsabresd/mx7dsabresd.c
+++ b/board/freescale/mx7dsabresd/mx7dsabresd.c
@@ -538,7 +538,7 @@ static void setup_iomux_uart(void)
imx_iomux_v3_setup_multiple_pads(uart1_pads, ARRAY_SIZE(uart1_pads));
}
-#ifdef CONFIG_QSPI
+#ifdef CONFIG_FSL_QSPI
static iomux_v3_cfg_t const quadspi_pads[] = {
MX7D_PAD_EPDC_DATA00__QSPI_A_DATA0 | MUX_PAD_CTRL(QSPI_PAD_CTRL),
MX7D_PAD_EPDC_DATA01__QSPI_A_DATA1 | MUX_PAD_CTRL(QSPI_PAD_CTRL),
@@ -773,7 +773,7 @@ int board_init(void)
setup_gpmi_nand();
#endif
-#ifdef CONFIG_QSPI
+#ifdef CONFIG_FSL_QSPI
board_qspi_init();
#endif