From: Jonathan Cameron Date: Thu, 30 Dec 2021 17:48:56 +0000 (+0000) Subject: iio:chemical:atlas: Trivial white space cleanup to add space before } X-Git-Tag: v6.1-rc5~1693^2~55^2~236 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=09bdf14fb59dc7147378e3ccc2419e14097e0565;p=platform%2Fkernel%2Flinux-starfive.git iio:chemical:atlas: Trivial white space cleanup to add space before } Having a space after the { and not one before the } is inconsistent and good to remove examples that might get copied into new drivers. Signed-off-by: Jonathan Cameron Cc: Matt Ranostay Reviewed-by: Gwendal Grignou Link: https://lore.kernel.org/r/20211230174911.78291-2-jic23@kernel.org --- diff --git a/drivers/iio/chemical/atlas-sensor.c b/drivers/iio/chemical/atlas-sensor.c index 04b44a3..a8211dd 100644 --- a/drivers/iio/chemical/atlas-sensor.c +++ b/drivers/iio/chemical/atlas-sensor.c @@ -589,11 +589,11 @@ static const struct iio_info atlas_info = { }; static const struct i2c_device_id atlas_id[] = { - { "atlas-ph-sm", ATLAS_PH_SM}, - { "atlas-ec-sm", ATLAS_EC_SM}, - { "atlas-orp-sm", ATLAS_ORP_SM}, - { "atlas-do-sm", ATLAS_DO_SM}, - { "atlas-rtd-sm", ATLAS_RTD_SM}, + { "atlas-ph-sm", ATLAS_PH_SM }, + { "atlas-ec-sm", ATLAS_EC_SM }, + { "atlas-orp-sm", ATLAS_ORP_SM }, + { "atlas-do-sm", ATLAS_DO_SM }, + { "atlas-rtd-sm", ATLAS_RTD_SM }, {} }; MODULE_DEVICE_TABLE(i2c, atlas_id);