From aff3756104544ed1bb45835db4a7824fece8709e Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Mon, 23 May 2016 18:36:00 +0800 Subject: imx-common: sata: return failure if not i.MX6DQPlus The i.MX6DQPlus support sata interface, we should not return failure when CPU is i.MX6DQPlus. Signed-off-by: Peng Fan Cc: Stefano Babic --- arch/arm/imx-common/sata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/arm/imx-common') diff --git a/arch/arm/imx-common/sata.c b/arch/arm/imx-common/sata.c index dd9698d3cd..acf9831870 100644 --- a/arch/arm/imx-common/sata.c +++ b/arch/arm/imx-common/sata.c @@ -15,7 +15,7 @@ int setup_sata(void) struct iomuxc *const iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR; int ret; - if (!is_mx6dq()) + if (!is_mx6dq() && !is_mx6dqp()) return 1; ret = enable_sata_clock(); -- cgit v1.2.1