diff options
author | Claudiu Beznea | 2021-07-16 08:43:49 +0300 |
---|---|---|
committer | Eugen Hristev | 2021-09-21 10:05:37 +0300 |
commit | 7d4ce3ac582c1a9b244aa9867178e1c60e0d438c (patch) | |
tree | d7b81637fead311923d63ad8f77c88056390ebd3 /drivers | |
parent | c05be59ca8c539039d600ff10f5f86a7a946bea7 (diff) |
cpu: at91: add compatible for ARM9260EJ-S
The crystal, CPU and master clock were not displayed correctly on SAM9X60
after adding CCF clock support. Add compatible for ARM926EJ-S to fix
this.
Reported-by: Eugen Hristev <eugen.hristev@microchip.com>
Fixes: a64862284f65 ("clk: at91: sam9x60: add support compatible with CCF")
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cpu/at91_cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpu/at91_cpu.c b/drivers/cpu/at91_cpu.c index 9ef1b3102cd..34a3f61c7e9 100644 --- a/drivers/cpu/at91_cpu.c +++ b/drivers/cpu/at91_cpu.c @@ -70,6 +70,7 @@ static const struct cpu_ops at91_cpu_ops = { static const struct udevice_id at91_cpu_ids[] = { { .compatible = "arm,cortex-a7" }, + { .compatible = "arm,arm926ej-s" }, { /* Sentinel. */ } }; |