iio:light:ltr501: White space cleanup of spacing around {} in id tables
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 30 Dec 2021 17:49:00 +0000 (17:49 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 23 Jan 2022 18:03:34 +0000 (18:03 +0000)
The spacing in this driver was inconsistent so make sure we have a space
after { and before } for the two id tables.
Part of aim is to avoid providing examples of this inconsistency that
get copied into new drivers.

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Nikita Travkin <nikita@trvn.ru>
Cc: Maslov Dmitry <maslovdmitry@seeed.cc>
Reviewed-by: Gwendal Grignou <gwendal@chromium.org>
Link: https://lore.kernel.org/r/20211230174911.78291-6-jic23@kernel.org
drivers/iio/light/ltr501.c

index 47d61ec..d1532ef 100644 (file)
@@ -1632,18 +1632,18 @@ static int ltr501_resume(struct device *dev)
 static SIMPLE_DEV_PM_OPS(ltr501_pm_ops, ltr501_suspend, ltr501_resume);
 
 static const struct acpi_device_id ltr_acpi_match[] = {
-       {"LTER0501", ltr501},
-       {"LTER0559", ltr559},
-       {"LTER0301", ltr301},
+       { "LTER0501", ltr501 },
+       { "LTER0559", ltr559 },
+       { "LTER0301", ltr301 },
        { },
 };
 MODULE_DEVICE_TABLE(acpi, ltr_acpi_match);
 
 static const struct i2c_device_id ltr501_id[] = {
-       { "ltr501", ltr501},
-       { "ltr559", ltr559},
-       { "ltr301", ltr301},
-       { "ltr303", ltr303},
+       { "ltr501", ltr501 },
+       { "ltr559", ltr559 },
+       { "ltr301", ltr301 },
+       { "ltr303", ltr303 },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, ltr501_id);