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 <van.freenix@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
Peng Fan 2016-05-23 18:36:00 +08:00 committed by Stefano Babic
parent b5437a8082
commit aff3756104

View File

@ -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();