diff options
| author | Rahman Mahmutović <mahmutovicrahman5@gmail.com> | 2026-04-27 22:20:16 +0200 |
|---|---|---|
| committer | Jonathan Cameron <jic23@kernel.org> | 2026-05-31 10:59:32 +0100 |
| commit | 095ae2f2e72f56d442ec0e476f873fd4d92c81de (patch) | |
| tree | 04b5e77de28ac4715a9f6dc4c481f6f2d7d625e5 | |
| parent | 081ce276d801d7c0a3dc41aa9a02ff73eb96c94a (diff) | |
| download | linux-095ae2f2e72f56d442ec0e476f873fd4d92c81de.tar.gz linux-095ae2f2e72f56d442ec0e476f873fd4d92c81de.zip | |
iio: temperature: maxim_thermocouple: Fix indentation in of_match table
Replace leading spaces with tabs in the of_device_id table
entries to comply with kernel coding style.
Signed-off-by: Rahman Mahmutović <mahmutovicrahman5@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
| -rw-r--r-- | drivers/iio/temperature/maxim_thermocouple.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/iio/temperature/maxim_thermocouple.c b/drivers/iio/temperature/maxim_thermocouple.c index 205939680fd4..e898f56d1196 100644 --- a/drivers/iio/temperature/maxim_thermocouple.c +++ b/drivers/iio/temperature/maxim_thermocouple.c @@ -277,8 +277,8 @@ static const struct spi_device_id maxim_thermocouple_id[] = { MODULE_DEVICE_TABLE(spi, maxim_thermocouple_id); static const struct of_device_id maxim_thermocouple_of_match[] = { - { .compatible = "maxim,max6675" }, - { .compatible = "maxim,max31855" }, + { .compatible = "maxim,max6675" }, + { .compatible = "maxim,max31855" }, { .compatible = "maxim,max31855k" }, { .compatible = "maxim,max31855j" }, { .compatible = "maxim,max31855n" }, @@ -286,7 +286,7 @@ static const struct of_device_id maxim_thermocouple_of_match[] = { { .compatible = "maxim,max31855t" }, { .compatible = "maxim,max31855e" }, { .compatible = "maxim,max31855r" }, - { }, + { }, }; MODULE_DEVICE_TABLE(of, maxim_thermocouple_of_match); |
