diff options
author | Jonathan Cameron | 2021-12-30 17:49:01 +0000 |
---|---|---|
committer | Jonathan Cameron | 2022-01-23 18:03:34 +0000 |
commit | 07d6484f4998f826dae3d79f315731fa1573f139 (patch) | |
tree | 91ecc373fa024bad8a58474a327ffa5a769e3524 /drivers/iio/proximity/ping.c | |
parent | 8877af25a2605e8b51a8f6948684c427a6a871b7 (diff) |
iio:proximity:ping: White space cleanup of spacing around {} in id tables
The spacing in this driver was inconsistent so make sure we have a space
after { and before } for the two id tables.
Avoid providing examples of this inconsistency that get copied into new
drivers.
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Andreas Klinger <ak@it-klinger.de>
Reviewed-by: Gwendal Grignou <gwendal@chromium.org>
Link: https://lore.kernel.org/r/20211230174911.78291-7-jic23@kernel.org
Diffstat (limited to 'drivers/iio/proximity/ping.c')
-rw-r--r-- | drivers/iio/proximity/ping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/proximity/ping.c b/drivers/iio/proximity/ping.c index 1283ac1c2e03..24a97d41e115 100644 --- a/drivers/iio/proximity/ping.c +++ b/drivers/iio/proximity/ping.c @@ -267,8 +267,8 @@ static const struct iio_chan_spec ping_chan_spec[] = { }; static const struct of_device_id of_ping_match[] = { - { .compatible = "parallax,ping", .data = &pa_ping_cfg}, - { .compatible = "parallax,laserping", .data = &pa_laser_ping_cfg}, + { .compatible = "parallax,ping", .data = &pa_ping_cfg }, + { .compatible = "parallax,laserping", .data = &pa_laser_ping_cfg }, {}, }; |