Re: [PATCH] clocksource: mxs_timer: add missing semicolon when DEBUG is defined

2021-01-18 Thread Tom Rix
On 1/18/21 7:15 AM, Daniel Lezcano wrote: > On 18/01/2021 14:49, t...@redhat.com wrote: >> From: Tom Rix >> >> When DEBUG is defined this error occurs >> >> drivers/clocksource/mxs_timer.c:138:1: error: >> expected ‘;’ before ‘}’ token >> >> The preceding statement needs a semicolon. >> >>

Re: [PATCH] clocksource: mxs_timer: add missing semicolon when DEBUG is defined

2021-01-18 Thread Daniel Lezcano
On 18/01/2021 14:49, t...@redhat.com wrote: > From: Tom Rix > > When DEBUG is defined this error occurs > > drivers/clocksource/mxs_timer.c:138:1: error: > expected ‘;’ before ‘}’ token > > The preceding statement needs a semicolon. > > Fixes: eb8703e2ef7c ("clockevents/drivers/mxs: Migrate

[PATCH] clocksource: mxs_timer: add missing semicolon when DEBUG is defined

2021-01-18 Thread trix
From: Tom Rix When DEBUG is defined this error occurs drivers/clocksource/mxs_timer.c:138:1: error: expected ‘;’ before ‘}’ token The preceding statement needs a semicolon. Fixes: eb8703e2ef7c ("clockevents/drivers/mxs: Migrate to new 'set-state' interface") Signed-off-by: Tom Rix ---