Skip to content
Snippets Groups Projects
Commit f5514e47 authored by Stefano Babic's avatar Stefano Babic
Browse files

MX6: fix sata compilation for i.MX6


Commit 164d9846 breaks
board with SATA support, because sata is not compiled.

Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
parent ebaf6b26
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ ifeq ($(SOC),$(filter $(SOC),mx6 mxs))
obj-y += misc.o
endif
ifeq ($(SOC),$(filter $(SOC),mx6))
objs-$(CONFIG_CMD_SATA) += sata.o
obj-$(CONFIG_CMD_SATA) += sata.o
endif
obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
......
......@@ -7,6 +7,7 @@
#include <asm/imx-common/iomux-v3.h>
#include <asm/arch/iomux.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
int setup_sata(void)
{
......
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