diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2021-09-30 19:11:01 -0700 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2021-10-02 21:42:28 +0900 |
commit | 72698a8789268cb11da21c018041b45233b82cbb (patch) | |
tree | 059e486349f989ff5934ef3552651f9cb2a604bd /arch/openrisc/kernel | |
parent | 5816b3e6577eaa676ceb00a848f0fd65fe2adc29 (diff) | |
download | linux-72698a8789268cb11da21c018041b45233b82cbb.tar.gz linux-72698a8789268cb11da21c018041b45233b82cbb.tar.bz2 linux-72698a8789268cb11da21c018041b45233b82cbb.zip |
openrisc: time: don't mark comment as kernel-doc
Fix a kernel-doc warning by unmarking the comment as being in
kernel-doc notation.
Fixes this warning:
arch/openrisc/kernel/time.c:137: warning: expecting prototype for Clocksource(). Prototype was for openrisc_timer_read() instead
Fixes: b731fbbd246e ("OpenRISC: Timekeeping")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Jonas Bonn <jonas@southpole.se>
Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Cc: Stafford Horne <shorne@gmail.com>
Cc: openrisc@lists.librecores.org
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc/kernel')
-rw-r--r-- | arch/openrisc/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/kernel/time.c b/arch/openrisc/kernel/time.c index b82866061958..a6e69386f82a 100644 --- a/arch/openrisc/kernel/time.c +++ b/arch/openrisc/kernel/time.c @@ -127,7 +127,7 @@ irqreturn_t __irq_entry timer_interrupt(struct pt_regs *regs) return IRQ_HANDLED; } -/** +/* * Clocksource: Based on OpenRISC timer/counter * * This sets up the OpenRISC Tick Timer as a clock source. The tick timer |