Skip to content

Commit dcbb559

Browse files
committed
loongson: fix cut-and-paste mis-merge
Ingo points out that I screwed up when merging the 'timers-for-linus' branch in commit a03fdb7. A bit too much copy-and-pasting caused the end result to have an extraneous 'return' in the middle of an expression. That was obviously bogus. Blush. Reported-by-with-patch: Ingo Molnar <mingo@elte.hu> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 996a798 commit dcbb559

File tree

1 file changed

+1
-1
lines changed
  • arch/mips/loongson/common

1 file changed

+1
-1
lines changed

arch/mips/loongson/common/time.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ void __init plat_time_init(void)
2323

2424
void read_persistent_clock(struct timespec *ts)
2525
{
26-
ts->tv_sec = return mc146818_get_cmos_time();
26+
ts->tv_sec = mc146818_get_cmos_time();
2727
ts->tv_nsec = 0;
2828
}

0 commit comments

Comments
 (0)