Message ID | 20211230174911.78291-11-jic23@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | IIO: Tidy up inconsistent spacing in ID tables. | expand |
On Thu, Dec 30, 2021 at 9:44 AM Jonathan Cameron <jic23@kernel.org> wrote: > > From: Jonathan Cameron <Jonathan.Cameron@huawei.com> > > The spacing was inconsistent with a space after the { but not > before the }. Tidy this up to avoid providing a bad example to copy into > new drivers. > > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > Cc: Antoniu Miclaus <antoniu.miclaus@analog.com> > --- Reviewed-by: Gwendal Grignou <gwendal@chromium.org> > drivers/iio/frequency/admv1013.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/frequency/admv1013.c b/drivers/iio/frequency/admv1013.c > index 6cdeb50143af..849a9ea7ebe5 100644 > --- a/drivers/iio/frequency/admv1013.c > +++ b/drivers/iio/frequency/admv1013.c > @@ -630,7 +630,7 @@ static int admv1013_probe(struct spi_device *spi) > } > > static const struct spi_device_id admv1013_id[] = { > - { "admv1013", 0}, > + { "admv1013", 0 }, > {} > }; > MODULE_DEVICE_TABLE(spi, admv1013_id); > -- > 2.34.1 >
diff --git a/drivers/iio/frequency/admv1013.c b/drivers/iio/frequency/admv1013.c index 6cdeb50143af..849a9ea7ebe5 100644 --- a/drivers/iio/frequency/admv1013.c +++ b/drivers/iio/frequency/admv1013.c @@ -630,7 +630,7 @@ static int admv1013_probe(struct spi_device *spi) } static const struct spi_device_id admv1013_id[] = { - { "admv1013", 0}, + { "admv1013", 0 }, {} }; MODULE_DEVICE_TABLE(spi, admv1013_id);