summaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/mxs_timer.c
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2021-01-18 13:19:55 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-03-04 09:39:44 +0100
commit2ac171abc715e45c09232391bac1f1cca443c6a5 (patch)
tree4ad0b704788c5240ac7f269314e78af6b30629d2 /drivers/clocksource/mxs_timer.c
parente3bba17f53a18a5d07cb900f313bc3b0cd5c7483 (diff)
downloadlinux-stable-2ac171abc715e45c09232391bac1f1cca443c6a5.tar.gz
linux-stable-2ac171abc715e45c09232391bac1f1cca443c6a5.tar.bz2
linux-stable-2ac171abc715e45c09232391bac1f1cca443c6a5.zip
clocksource/drivers/mxs_timer: Add missing semicolon when DEBUG is defined
[ Upstream commit 7da390694afbaed8e0f05717a541dfaf1077ba51 ] When DEBUG is defined this error occurs drivers/clocksource/mxs_timer.c:138:1: error: expected ‘;’ before ‘}’ token The preceding statement needs a semicolon. Replace pr_info() with pr_debug() and remove the unneeded ifdef. Fixes: eb8703e2ef7c ("clockevents/drivers/mxs: Migrate to new 'set-state' interface") Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20210118211955.763609-1-trix@redhat.com Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/clocksource/mxs_timer.c')
-rw-r--r--drivers/clocksource/mxs_timer.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/clocksource/mxs_timer.c b/drivers/clocksource/mxs_timer.c
index f6ddae30933f..dae8c0c2e606 100644
--- a/drivers/clocksource/mxs_timer.c
+++ b/drivers/clocksource/mxs_timer.c
@@ -138,10 +138,7 @@ static void mxs_irq_clear(char *state)
/* Clear pending interrupt */
timrot_irq_acknowledge();
-
-#ifdef DEBUG
- pr_info("%s: changing mode to %s\n", __func__, state)
-#endif /* DEBUG */
+ pr_debug("%s: changing mode to %s\n", __func__, state);
}
static int mxs_shutdown(struct clock_event_device *evt)