diff options
author | hexingwei001@208suo.com <hexingwei001@208suo.com> | 2023-07-13 16:39:22 +0800 |
---|---|---|
committer | Greg Ungerer <gerg@linux-m68k.org> | 2023-08-21 08:45:36 +1000 |
commit | cf18ecd34f71dfd2815046d4c0d7b6439bb0cbde (patch) | |
tree | ac2ebb6a6f5c40454b5c66ef61303da54a4e1452 /arch/m68k | |
parent | 8ad50582210c2aa6777bf58252ade9af7ea554b5 (diff) | |
download | lwn-cf18ecd34f71dfd2815046d4c0d7b6439bb0cbde.tar.gz lwn-cf18ecd34f71dfd2815046d4c0d7b6439bb0cbde.zip |
m68k: coldfire: dma_timer: ERROR: "foo __init bar" should be "foo __init bar"
Fix one occurrences of the checkpatch.pl error:
ERROR: "foo __init bar" should be "foo __init bar"
Signed-off-by: Xingwei He <hexingwei001@208suo.com>
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/coldfire/dma_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/coldfire/dma_timer.c b/arch/m68k/coldfire/dma_timer.c index cbb289439606..91e6728f51ed 100644 --- a/arch/m68k/coldfire/dma_timer.c +++ b/arch/m68k/coldfire/dma_timer.c @@ -48,7 +48,7 @@ static struct clocksource clocksource_cf_dt = { .flags = CLOCK_SOURCE_IS_CONTINUOUS, }; -static int __init init_cf_dt_clocksource(void) +static int __init init_cf_dt_clocksource(void) { /* * We setup DMA timer 0 in free run mode. This incrementing counter is |