diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2018-01-05 15:08:18 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-01-08 17:33:06 +0100 |
commit | 23b6a131fdae9fdd995e10cf43eec82536d434a7 (patch) | |
tree | e63ba589c063fa439c7079557fffcdff6d1918fd /arch/arm/mach-imx/Makefile | |
parent | 616aa55d178788e134cc58439a7215b03c7090e4 (diff) | |
download | u-boot-23b6a131fdae9fdd995e10cf43eec82536d434a7.tar.gz u-boot-23b6a131fdae9fdd995e10cf43eec82536d434a7.tar.xz u-boot-23b6a131fdae9fdd995e10cf43eec82536d434a7.zip |
imx: introduce CONFIG_GPT_TIMER
Introduce a new config symbol to select the i.MX
General Purpose Timer (GPT).
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Diffstat (limited to 'arch/arm/mach-imx/Makefile')
-rw-r--r-- | arch/arm/mach-imx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile index d77c10e176..9322c1ce83 100644 --- a/arch/arm/mach-imx/Makefile +++ b/arch/arm/mach-imx/Makefile @@ -11,7 +11,8 @@ ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 vf610)) obj-y = iomux-v3.o endif ifeq ($(SOC),$(filter $(SOC),mx5 mx6)) -obj-y += timer.o cpu.o speed.o +obj-y += cpu.o speed.o +obj-$(CONFIG_GPT_TIMER) += timer.o obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o endif ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs)) |