diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-10-02 10:13:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-10-02 10:13:05 -0700 |
commit | db23baa28eb1f93df1fc175a419e7ffe5b6f1582 (patch) | |
tree | 05d5cbe5bd88d80322c7358344024fefabd6a4a3 /drivers | |
parent | 4e3b9ce271b4b54d2293a3916d22e4ddc0c89aab (diff) | |
parent | aa9887608e77b835d51f05a54940380391cd4e21 (diff) |
Merge tag 'riscv-for-linus-5.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
Pull RISC-V fixes from Palmer Dabbelt:
"Two fixes for this week:
- The addition of a symbol export for clint_time_val, which has been
inlined into some timex functions and can be used by drivers.
- A fix to avoid calling get_cycles() before the timers have been
probed.
These both only effect !MMU systems"
* tag 'riscv-for-linus-5.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux:
RISC-V: Check clint_time_val before use
clocksource: clint: Export clint_time_val for modules
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clocksource/timer-clint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clocksource/timer-clint.c b/drivers/clocksource/timer-clint.c index d17367dee02c..6cfe2ab73eb0 100644 --- a/drivers/clocksource/timer-clint.c +++ b/drivers/clocksource/timer-clint.c @@ -38,6 +38,7 @@ static unsigned int clint_timer_irq; #ifdef CONFIG_RISCV_M_MODE u64 __iomem *clint_time_val; +EXPORT_SYMBOL(clint_time_val); #endif static void clint_send_ipi(const struct cpumask *target) |