Skip to content
Snippets Groups Projects
Commit aff37561 authored by Peng Fan's avatar Peng Fan Committed by Stefano Babic
Browse files

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: default avatarPeng Fan <van.freenix@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
parent b5437a80
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment