From: Peng Fan Date: Mon, 23 May 2016 10:36:01 +0000 (+0800) Subject: imx-common: timer: support i.MX6DQPlus X-Git-Tag: v2016.07-rc2~49^2~40 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=492d60ac79aba67e8b9e98b251e3996746e58d60;p=u-boot imx-common: timer: support i.MX6DQPlus To i.MX6DQPlus, osc can be choosed as the source of gpt, so add i.MX6DQPlus support in gpt_has_clk_source_osc. Signed-off-by: Peng Fan Cc: Stefano Babic --- diff --git a/arch/arm/imx-common/timer.c b/arch/arm/imx-common/timer.c index bea17f2c6b..a01590ced2 100644 --- a/arch/arm/imx-common/timer.c +++ b/arch/arm/imx-common/timer.c @@ -44,7 +44,7 @@ static inline int gpt_has_clk_source_osc(void) { #if defined(CONFIG_MX6) if (((is_mx6dq()) && (soc_rev() > CHIP_REV_1_0)) || - is_mx6sdl() || is_mx6sx() || is_mx6ul()) + is_mx6dqp() || is_mx6sdl() || is_mx6sx() || is_mx6ul()) return 1; return 0;