diff options
Diffstat (limited to 'arch/arm/mach-shmobile/timer.c')
-rw-r--r-- | arch/arm/mach-shmobile/timer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/timer.c b/arch/arm/mach-shmobile/timer.c index 44d32a84b001..88f067bcec94 100644 --- a/arch/arm/mach-shmobile/timer.c +++ b/arch/arm/mach-shmobile/timer.c | |||
@@ -80,6 +80,11 @@ void __init shmobile_init_delay(void) | |||
80 | * to GIC being initialized from C and arch timer via DT */ | 80 | * to GIC being initialized from C and arch timer via DT */ |
81 | if (of_machine_is_compatible("renesas,r8a73a4")) | 81 | if (of_machine_is_compatible("renesas,r8a73a4")) |
82 | has_arch_timer = false; | 82 | has_arch_timer = false; |
83 | |||
84 | /* Non-multiplatform r8a7790 SoC cannot use arch timer due | ||
85 | * to GIC being initialized from C and arch timer via DT */ | ||
86 | if (of_machine_is_compatible("renesas,r8a7790")) | ||
87 | has_arch_timer = false; | ||
83 | #endif | 88 | #endif |
84 | 89 | ||
85 | if (!has_arch_timer || !IS_ENABLED(CONFIG_ARM_ARCH_TIMER)) { | 90 | if (!has_arch_timer || !IS_ENABLED(CONFIG_ARM_ARCH_TIMER)) { |