misc: at25: Replace commas by spaces in the ID tables
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 25 Nov 2021 21:32:02 +0000 (23:32 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Dec 2021 13:26:15 +0000 (14:26 +0100)
For better readability replace commas by spaces in the ID tables.

Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211125213203.86693-10-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/eeprom/at25.c

index 3e60124..9264bb1 100644 (file)
@@ -400,15 +400,15 @@ static int at25_fram_to_chip(struct device *dev, struct spi_eeprom *chip)
 }
 
 static const struct of_device_id at25_of_match[] = {
-       { .compatible = "atmel,at25",},
-       { .compatible = "cypress,fm25",},
+       { .compatible = "atmel,at25" },
+       { .compatible = "cypress,fm25" },
        { }
 };
 MODULE_DEVICE_TABLE(of, at25_of_match);
 
 static const struct spi_device_id at25_spi_ids[] = {
-       { .name = "at25",},
-       { .name = "fm25",},
+       { .name = "at25" },
+       { .name = "fm25" },
        { }
 };
 MODULE_DEVICE_TABLE(spi, at25_spi_ids);