iio:light:ltr501: 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. 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
This commit is contained in:
parent
77f8767627
commit
8877af25a2
1 changed files with 7 additions and 7 deletions
|
@ -1632,18 +1632,18 @@ static int ltr501_resume(struct device *dev)
|
||||||
static SIMPLE_DEV_PM_OPS(ltr501_pm_ops, ltr501_suspend, ltr501_resume);
|
static SIMPLE_DEV_PM_OPS(ltr501_pm_ops, ltr501_suspend, ltr501_resume);
|
||||||
|
|
||||||
static const struct acpi_device_id ltr_acpi_match[] = {
|
static const struct acpi_device_id ltr_acpi_match[] = {
|
||||||
{"LTER0501", ltr501},
|
{ "LTER0501", ltr501 },
|
||||||
{"LTER0559", ltr559},
|
{ "LTER0559", ltr559 },
|
||||||
{"LTER0301", ltr301},
|
{ "LTER0301", ltr301 },
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(acpi, ltr_acpi_match);
|
MODULE_DEVICE_TABLE(acpi, ltr_acpi_match);
|
||||||
|
|
||||||
static const struct i2c_device_id ltr501_id[] = {
|
static const struct i2c_device_id ltr501_id[] = {
|
||||||
{ "ltr501", ltr501},
|
{ "ltr501", ltr501 },
|
||||||
{ "ltr559", ltr559},
|
{ "ltr559", ltr559 },
|
||||||
{ "ltr301", ltr301},
|
{ "ltr301", ltr301 },
|
||||||
{ "ltr303", ltr303},
|
{ "ltr303", ltr303 },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(i2c, ltr501_id);
|
MODULE_DEVICE_TABLE(i2c, ltr501_id);
|
||||||
|
|
Loading…
Add table
Reference in a new issue