Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754222AbdL1XHR (ORCPT ); Thu, 28 Dec 2017 18:07:17 -0500 Received: from mail-wr0-f196.google.com ([209.85.128.196]:40701 "EHLO mail-wr0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751169AbdL1XHO (ORCPT ); Thu, 28 Dec 2017 18:07:14 -0500 X-Google-Smtp-Source: ACJfBovYH3Pb6W5yZfJRIkQtqPCVaSXRtXkD9Asjzd608+qNXMss5RAJOZEx2dnOldKuoOMu1YGVOw== From: Philippe Loctaux To: gregkh@linuxfoundation.org Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Philippe Loctaux Subject: [PATCH 1/2] Staging: most: aim-sound: sound.c: fixed an alignment issue Date: Fri, 29 Dec 2017 00:06:49 +0100 Message-Id: <20171228230650.12973-2-loctauxphilippe@gmail.com> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20171228230650.12973-1-loctauxphilippe@gmail.com> References: <20171228230650.12973-1-loctauxphilippe@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1004 Lines: 32 Fixed a coding style issue. Signed-off-by: Philippe Loctaux --- 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