Fixed a coding style issue. Signed-off-by: Philippe Loctaux <loctauxphili...@gmail.com> --- drivers/staging/most/aim-sound/sound.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/most/aim-sound/sound.c b/drivers/staging/most/aim-sound/sound.c index ea1366a44..ab2b0d833 100644 --- a/drivers/staging/most/aim-sound/sound.c +++ b/drivers/staging/most/aim-sound/sound.c @@ -235,12 +235,12 @@ static int playback_thread(void *data) struct mbo *mbo = NULL; bool period_elapsed = false; - wait_event_interruptible( - channel->playback_waitq, - kthread_should_stop() || - (channel->is_stream_running && - (mbo = most_get_mbo(channel->iface, channel->id, - &audio_aim)))); + wait_event_interruptible(channel->playback_waitq, + kthread_should_stop() || + (channel->is_stream_running && + (mbo = most_get_mbo(channel->iface, + channel->id, + &audio_aim)))); if (!mbo) continue; -- 2.15.1