aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/misc/eeprom/at25.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2021-11-25 23:32:02 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-03 14:26:15 +0100
commitd6471ab9ab5814489ed2ebd8c554232b59ac571b (patch)
treef813c5a904601fef7f92c3173d4106ae1c190dae /drivers/misc/eeprom/at25.c
parentmisc: at25: Reorganize headers for better maintenance (diff)
downloadwireguard-linux-d6471ab9ab5814489ed2ebd8c554232b59ac571b.tar.xz
wireguard-linux-d6471ab9ab5814489ed2ebd8c554232b59ac571b.zip
misc: at25: Replace commas by spaces in the ID tables
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>
Diffstat (limited to 'drivers/misc/eeprom/at25.c')
-rw-r--r--drivers/misc/eeprom/at25.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c
index 3e60124d14a3..9264bb17963e 100644
--- a/drivers/misc/eeprom/at25.c
+++ b/drivers/misc/eeprom/at25.c
@@ -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);