Linux IIO development
 help / color / mirror / Atom feed
* [PATCH] iio: light: isl76682: Space consistency
@ 2023-12-05  1:22 Marek Vasut
  2023-12-05  7:21 ` Matti Vaittinen
  0 siblings, 1 reply; 3+ messages in thread
From: Marek Vasut @ 2023-12-05  1:22 UTC (permalink / raw)
  To: linux-iio
  Cc: Marek Vasut, Andy Shevchenko, Jonathan Cameron,
	Lars-Peter Clausen, Matti Vaittinen

Add missing space between { } to be consistent with the other { } .
No functional change.

Signed-off-by: Marek Vasut <marex@denx.de>
---
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Matti Vaittinen <mazziesaccount@gmail.com>
Cc: linux-iio@vger.kernel.org
---
 drivers/iio/light/isl76682.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/light/isl76682.c b/drivers/iio/light/isl76682.c
index 15a68609985b6..a17970fb3758e 100644
--- a/drivers/iio/light/isl76682.c
+++ b/drivers/iio/light/isl76682.c
@@ -328,7 +328,7 @@ static int isl76682_probe(struct i2c_client *client)
 
 static const struct i2c_device_id isl76682_id[] = {
 	{ "isl76682" },
-	{}
+	{ }
 };
 MODULE_DEVICE_TABLE(i2c, isl76682_id);
 
-- 
2.42.0


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

* Re: [PATCH] iio: light: isl76682: Space consistency
  2023-12-05  1:22 [PATCH] iio: light: isl76682: Space consistency Marek Vasut
@ 2023-12-05  7:21 ` Matti Vaittinen
  2023-12-06 17:21   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Matti Vaittinen @ 2023-12-05  7:21 UTC (permalink / raw)
  To: Marek Vasut, linux-iio
  Cc: Andy Shevchenko, Jonathan Cameron, Lars-Peter Clausen

On 12/5/23 03:22, Marek Vasut wrote:
> Add missing space between { } to be consistent with the other { } .
> No functional change.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>

Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>

> ---
> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Cc: Lars-Peter Clausen <lars@metafoo.de>
> Cc: Matti Vaittinen <mazziesaccount@gmail.com>
> Cc: linux-iio@vger.kernel.org
> ---
>   drivers/iio/light/isl76682.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/light/isl76682.c b/drivers/iio/light/isl76682.c
> index 15a68609985b6..a17970fb3758e 100644
> --- a/drivers/iio/light/isl76682.c
> +++ b/drivers/iio/light/isl76682.c
> @@ -328,7 +328,7 @@ static int isl76682_probe(struct i2c_client *client)
>   
>   static const struct i2c_device_id isl76682_id[] = {
>   	{ "isl76682" },
> -	{}
> +	{ }
>   };
>   MODULE_DEVICE_TABLE(i2c, isl76682_id);
>   

-- 
Matti Vaittinen
Linux kernel developer at ROHM Semiconductors
Oulu Finland

~~ When things go utterly wrong vim users can always type :help! ~~


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

* Re: [PATCH] iio: light: isl76682: Space consistency
  2023-12-05  7:21 ` Matti Vaittinen
@ 2023-12-06 17:21   ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2023-12-06 17:21 UTC (permalink / raw)
  To: Matti Vaittinen
  Cc: Marek Vasut, linux-iio, Andy Shevchenko, Lars-Peter Clausen

On Tue, 5 Dec 2023 09:21:02 +0200
Matti Vaittinen <mazziesaccount@gmail.com> wrote:

> On 12/5/23 03:22, Marek Vasut wrote:
> > Add missing space between { } to be consistent with the other { } .
> > No functional change.
> > 
> > Signed-off-by: Marek Vasut <marex@denx.de>  
> 
> Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>
> 
I squashed this into the driver patch.

Thanks,

Jonathan

> > ---
> > Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > Cc: Jonathan Cameron <jic23@kernel.org>
> > Cc: Lars-Peter Clausen <lars@metafoo.de>
> > Cc: Matti Vaittinen <mazziesaccount@gmail.com>
> > Cc: linux-iio@vger.kernel.org
> > ---
> >   drivers/iio/light/isl76682.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/iio/light/isl76682.c b/drivers/iio/light/isl76682.c
> > index 15a68609985b6..a17970fb3758e 100644
> > --- a/drivers/iio/light/isl76682.c
> > +++ b/drivers/iio/light/isl76682.c
> > @@ -328,7 +328,7 @@ static int isl76682_probe(struct i2c_client *client)
> >   
> >   static const struct i2c_device_id isl76682_id[] = {
> >   	{ "isl76682" },
> > -	{}
> > +	{ }
> >   };
> >   MODULE_DEVICE_TABLE(i2c, isl76682_id);
> >     
> 


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

end of thread, other threads:[~2023-12-06 17:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-05  1:22 [PATCH] iio: light: isl76682: Space consistency Marek Vasut
2023-12-05  7:21 ` Matti Vaittinen
2023-12-06 17:21   ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox