Re: [PATCH] Drivers: staging: most: sound: Fixed styling issue.

2021-02-09 Thread Greg KH
On Tue, Feb 09, 2021 at 06:36:19PM +0530, Mukul Mehar wrote:
> This patch fixes a warning, of the line ending with a '(',
> generated by checkpatch.pl.
> 
> Signed-off-by: Mukul Mehar 
> ---
>  drivers/staging/most/sound/sound.c | 12 ++--
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/staging/most/sound/sound.c 
> b/drivers/staging/most/sound/sound.c
> index 3a1a59058042..4dd1bf95d1ce 100644
> --- a/drivers/staging/most/sound/sound.c
> +++ b/drivers/staging/most/sound/sound.c
> @@ -228,12 +228,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,
> -  ;
> + wait_event_interruptible(channel->playback_waitq,
> +  kthread_should_stop() ||
> +  (channel->is_stream_running &&
> +  (mbo = most_get_mbo(channel->iface,
> +  channel->id,
> +  ;

This line is horrid, you can indent it further (line up the
most_get_mbo() parameters at the least.

Also you lost the extra indentation of the "(mbo " portion, can you make
sure that is there too?

thanks,

greg k-h


[PATCH] Drivers: staging: most: sound: Fixed styling issue.

2021-02-09 Thread Mukul Mehar
This patch fixes a warning, of the line ending with a '(',
generated by checkpatch.pl.

Signed-off-by: Mukul Mehar 
---
 drivers/staging/most/sound/sound.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/most/sound/sound.c 
b/drivers/staging/most/sound/sound.c
index 3a1a59058042..4dd1bf95d1ce 100644
--- a/drivers/staging/most/sound/sound.c
+++ b/drivers/staging/most/sound/sound.c
@@ -228,12 +228,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,
-;
+   wait_event_interruptible(channel->playback_waitq,
+kthread_should_stop() ||
+(channel->is_stream_running &&
+(mbo = most_get_mbo(channel->iface,
+channel->id,
+;
if (!mbo)
continue;
 
-- 
2.25.1


Re: [PATCH] Drivers: staging: most: sound: Fixed styling issue.

2021-02-09 Thread Greg KH
On Tue, Feb 09, 2021 at 06:20:37PM +0530, Mukul Mehar wrote:
> This patch fixes a warning, of the line ending with a '(',
> generated by checkpatch.pl.
> 
> Signed-off-by: Mukul Mehar 
> ---
>  drivers/staging/most/sound/sound.c | 12 ++--
>  1 file changed, 6 insertions(+), 6 deletions(-)

Any reason you didn't also cc: the other developer that
get_maintainer.pl tells you to for this file?

Please fix that up and resend, especially as that developer also sent a
different patch for this driver right before you, so someone's patch is
going to get confused...

thanks,

greg k-h


[PATCH] Drivers: staging: most: sound: Fixed styling issue.

2021-02-09 Thread Mukul Mehar
This patch fixes a warning, of the line ending with a '(',
generated by checkpatch.pl.

Signed-off-by: Mukul Mehar 
---
 drivers/staging/most/sound/sound.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/most/sound/sound.c 
b/drivers/staging/most/sound/sound.c
index 3a1a59058042..4dd1bf95d1ce 100644
--- a/drivers/staging/most/sound/sound.c
+++ b/drivers/staging/most/sound/sound.c
@@ -228,12 +228,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,
-;
+   wait_event_interruptible(channel->playback_waitq,
+kthread_should_stop() ||
+(channel->is_stream_running &&
+(mbo = most_get_mbo(channel->iface,
+channel->id,
+;
if (!mbo)
continue;
 
-- 
2.25.1