All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: iio: adc: ad7192: Align with parenthesis
@ 2020-03-03 18:39 ` Nishant Malpani
  0 siblings, 0 replies; 4+ messages in thread
From: Nishant Malpani @ 2020-03-03 18:39 UTC (permalink / raw)
  To: linux-iio; +Cc: jic23, stefan.popa, gregkh, devel, nish.malpani25

This patch fixes the checkpatch.pl warning:

CHECK: Alignment should match open parenthesis
+static void ad7192_get_available_filter_freq(struct ad7192_state *st,
+                                                   int *freq)

Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com>
---
 drivers/staging/iio/adc/ad7192.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/iio/adc/ad7192.c b/drivers/staging/iio/adc/ad7192.c
index bf3e2a9cc07f..20fe7464da7f 100644
--- a/drivers/staging/iio/adc/ad7192.c
+++ b/drivers/staging/iio/adc/ad7192.c
@@ -477,7 +477,7 @@ static ssize_t ad7192_set(struct device *dev,
 }
 
 static void ad7192_get_available_filter_freq(struct ad7192_state *st,
-						    int *freq)
+					     int *freq)
 {
 	unsigned int fadc;
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] staging: iio: adc: ad7192: Align with parenthesis
@ 2020-03-03 18:39 ` Nishant Malpani
  0 siblings, 0 replies; 4+ messages in thread
From: Nishant Malpani @ 2020-03-03 18:39 UTC (permalink / raw)
  To: linux-iio; +Cc: devel, gregkh, nish.malpani25, stefan.popa, jic23

This patch fixes the checkpatch.pl warning:

CHECK: Alignment should match open parenthesis
+static void ad7192_get_available_filter_freq(struct ad7192_state *st,
+                                                   int *freq)

Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com>
---
 drivers/staging/iio/adc/ad7192.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/iio/adc/ad7192.c b/drivers/staging/iio/adc/ad7192.c
index bf3e2a9cc07f..20fe7464da7f 100644
--- a/drivers/staging/iio/adc/ad7192.c
+++ b/drivers/staging/iio/adc/ad7192.c
@@ -477,7 +477,7 @@ static ssize_t ad7192_set(struct device *dev,
 }
 
 static void ad7192_get_available_filter_freq(struct ad7192_state *st,
-						    int *freq)
+					     int *freq)
 {
 	unsigned int fadc;
 
-- 
2.20.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] staging: iio: adc: ad7192: Align with parenthesis
  2020-03-03 18:39 ` Nishant Malpani
@ 2020-03-04  6:27   ` Ardelean, Alexandru
  -1 siblings, 0 replies; 4+ messages in thread
From: Ardelean, Alexandru @ 2020-03-04  6:27 UTC (permalink / raw)
  To: nish.malpani25, linux-iio; +Cc: stefan.popa, jic23, gregkh, devel

On Wed, 2020-03-04 at 00:09 +0530, Nishant Malpani wrote:
> [External]
> 
> This patch fixes the checkpatch.pl warning:
> 
> CHECK: Alignment should match open parenthesis
> +static void ad7192_get_available_filter_freq(struct ad7192_state *st,
> +                                                   int *freq)
> 

This patch needs to be updated a bit.
The driver has moved out of staging.
Path is now: ./drivers/iio/adc/ad7192.c

> Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com>
> ---
>  drivers/staging/iio/adc/ad7192.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/iio/adc/ad7192.c
> b/drivers/staging/iio/adc/ad7192.c
> index bf3e2a9cc07f..20fe7464da7f 100644
> --- a/drivers/staging/iio/adc/ad7192.c
> +++ b/drivers/staging/iio/adc/ad7192.c
> @@ -477,7 +477,7 @@ static ssize_t ad7192_set(struct device *dev,
>  }
>  
>  static void ad7192_get_available_filter_freq(struct ad7192_state *st,
> -						    int *freq)
> +					     int *freq)
>  {
>  	unsigned int fadc;
>  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] staging: iio: adc: ad7192: Align with parenthesis
@ 2020-03-04  6:27   ` Ardelean, Alexandru
  0 siblings, 0 replies; 4+ messages in thread
From: Ardelean, Alexandru @ 2020-03-04  6:27 UTC (permalink / raw)
  To: nish.malpani25, linux-iio; +Cc: devel, gregkh, jic23, stefan.popa

On Wed, 2020-03-04 at 00:09 +0530, Nishant Malpani wrote:
> [External]
> 
> This patch fixes the checkpatch.pl warning:
> 
> CHECK: Alignment should match open parenthesis
> +static void ad7192_get_available_filter_freq(struct ad7192_state *st,
> +                                                   int *freq)
> 

This patch needs to be updated a bit.
The driver has moved out of staging.
Path is now: ./drivers/iio/adc/ad7192.c

> Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com>
> ---
>  drivers/staging/iio/adc/ad7192.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/iio/adc/ad7192.c
> b/drivers/staging/iio/adc/ad7192.c
> index bf3e2a9cc07f..20fe7464da7f 100644
> --- a/drivers/staging/iio/adc/ad7192.c
> +++ b/drivers/staging/iio/adc/ad7192.c
> @@ -477,7 +477,7 @@ static ssize_t ad7192_set(struct device *dev,
>  }
>  
>  static void ad7192_get_available_filter_freq(struct ad7192_state *st,
> -						    int *freq)
> +					     int *freq)
>  {
>  	unsigned int fadc;
>  
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-04  6:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-03 18:39 [PATCH] staging: iio: adc: ad7192: Align with parenthesis Nishant Malpani
2020-03-03 18:39 ` Nishant Malpani
2020-03-04  6:27 ` Ardelean, Alexandru
2020-03-04  6:27   ` Ardelean, Alexandru

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.