diff options
Diffstat (limited to 'arch/arm/imx-common')
| -rw-r--r-- | arch/arm/imx-common/Makefile | 2 | ||||
| -rw-r--r-- | arch/arm/imx-common/sata.c | 1 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile index 68f0f5276..ee5c872f5 100644 --- a/arch/arm/imx-common/Makefile +++ b/arch/arm/imx-common/Makefile @@ -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 diff --git a/arch/arm/imx-common/sata.c b/arch/arm/imx-common/sata.c index 1b4c5029a..2e694866e 100644 --- a/arch/arm/imx-common/sata.c +++ b/arch/arm/imx-common/sata.c @@ -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)  { |