mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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 <van.freenix@gmail.com> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
aff3756104
commit
492d60ac79
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue