Commit 866a30ef authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'nios2-v4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2

Pull arch/nios2 update from Ley Foon Tan.

* tag 'nios2-v4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2:
  nios2: time: Read timer in get_cycles only if initialized
  nios2: add earlycon support to 3c120 devboard DTS
parents 418702b9 65d1e3dd
...@@ -159,6 +159,7 @@ partition@800000 { ...@@ -159,6 +159,7 @@ partition@800000 {
}; };
chosen { chosen {
bootargs = "debug console=ttyJ0,115200"; bootargs = "debug earlycon console=ttyJ0,115200";
stdout-path = &jtag_uart;
}; };
}; };
...@@ -107,7 +107,10 @@ static struct nios2_clocksource nios2_cs = { ...@@ -107,7 +107,10 @@ static struct nios2_clocksource nios2_cs = {
cycles_t get_cycles(void) cycles_t get_cycles(void)
{ {
return nios2_timer_read(&nios2_cs.cs); /* Only read timer if it has been initialized */
if (nios2_cs.timer.base)
return nios2_timer_read(&nios2_cs.cs);
return 0;
} }
EXPORT_SYMBOL(get_cycles); EXPORT_SYMBOL(get_cycles);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment