iio: magn: hmc5843: Drop excessive indentation of assignments of hmc5843_driver
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 7 Aug 2022 18:45:33 +0000 (19:45 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 15 Aug 2022 21:30:02 +0000 (22:30 +0100)
This formatting is odd, so fix it to be more standard.

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20220807184534.1037363-2-jic23@kernel.org
drivers/iio/magnetometer/hmc5843_spi.c

index 8403f09aba39aa57ae49e4a7d13a4b2d4021d378..310027a533427cf604769048c811f330ea56fc65 100644 (file)
@@ -86,13 +86,13 @@ static const struct spi_device_id hmc5843_id[] = {
 MODULE_DEVICE_TABLE(spi, hmc5843_id);
 
 static struct spi_driver hmc5843_driver = {
-               .driver = {
-                               .name = "hmc5843",
-                               .pm = HMC5843_PM_OPS,
-               },
-               .id_table = hmc5843_id,
-               .probe = hmc5843_spi_probe,
-               .remove = hmc5843_spi_remove,
+       .driver = {
+               .name = "hmc5843",
+               .pm = HMC5843_PM_OPS,
+       },
+       .id_table = hmc5843_id,
+       .probe = hmc5843_spi_probe,
+       .remove = hmc5843_spi_remove,
 };
 
 module_spi_driver(hmc5843_driver);