diff options
author | Huang Shijie <b32955@freescale.com> | 2013-11-07 17:46:37 +0800 |
---|---|---|
committer | Huang Shijie <b32955@freescale.com> | 2013-11-12 09:55:10 +0800 |
commit | 8ff4a1814ae50cf06da8aeb3507c141ccf11c4cf (patch) | |
tree | 059d1270649452d17679b8d430c3646f8f0bf265 /drivers/mtd | |
parent | 41668153b18faa46ac4fe2447fb62367013108ec (diff) |
mtd: gpmi: only scan two chips for imx6
We cannot scan two chips for imx23 and imx28:
imx23: the Ready-Busy1 line is not connected for some board.
imx28: we do not set the pinctrl for Ready-Busy1
So we only scan two chips for imx6.
Signed-off-by: Huang Shijie <b32955@freescale.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index f8dc5603ed01..c7243dca90fd 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c @@ -1674,7 +1674,7 @@ static int gpmi_nfc_init(struct gpmi_nand_data *this) if (ret) goto err_out; - ret = nand_scan_ident(mtd, 2, NULL); + ret = nand_scan_ident(mtd, GPMI_IS_MX6Q(this) ? 2 : 1, NULL); if (ret) goto err_out; |