From: Jonathan Cameron Date: Thu, 30 Dec 2021 17:48:59 +0000 (+0000) Subject: iio:light:us5182: White space cleanup of spacing around {} in id tables X-Git-Tag: v6.1-rc5~1693^2~55^2~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77f8767627c0c6b3ccfd0bee96cbec097426244a;p=platform%2Fkernel%2Flinux-starfive.git iio:light:us5182: 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. Signed-off-by: Jonathan Cameron Reviewed-by: Gwendal Grignou Link: https://lore.kernel.org/r/20211230174911.78291-5-jic23@kernel.org --- diff --git a/drivers/iio/light/us5182d.c b/drivers/iio/light/us5182d.c index 96e4a66..1492aaf 100644 --- a/drivers/iio/light/us5182d.c +++ b/drivers/iio/light/us5182d.c @@ -947,15 +947,15 @@ static const struct dev_pm_ops us5182d_pm_ops = { }; static const struct acpi_device_id us5182d_acpi_match[] = { - { "USD5182", 0}, + { "USD5182", 0 }, {} }; MODULE_DEVICE_TABLE(acpi, us5182d_acpi_match); static const struct i2c_device_id us5182d_id[] = { - {"usd5182", 0}, - {} + { "usd5182", 0 }, + {} }; MODULE_DEVICE_TABLE(i2c, us5182d_id);