clocksource/drivers/mxs_timer: Add missing semicolon when DEBUG is defined
authorTom Rix <trix@redhat.com>
Mon, 18 Jan 2021 21:19:55 +0000 (13:19 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Mar 2021 10:37:57 +0000 (11:37 +0100)
commitf8b64afe9166c8ceec5d7e3893381283b5a07e99
tree5e0becf7db07accfad531826f69ea641e2df7aa7
parent9f5c5595cf13d9397d1af82d057edfed13f0dbaa
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>
drivers/clocksource/mxs_timer.c