diff options
author | Jiri Prchal <jiri.prchal@aksignal.cz> | 2015-06-25 14:44:19 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-07-07 15:34:22 +0300 |
commit | 6fec919b61b66e7f92646a7bd6fada9850f5cedc (patch) | |
tree | 2f168fc9bbece6c904b684d9a3a43dc242c22727 /drivers/spi/spidev.c | |
parent | d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754 (diff) | |
download | linux-6fec919b61b66e7f92646a7bd6fada9850f5cedc.tar.xz |
spi: spidev: add compatible value for LTC2488
Since spidev is no more allowed to use in DT and is really loudly warned about
it I'd like to add this compatible value.
(Geert Uytterhoeven wrote: "Add the compatible value for your device to the
spidev_dt_ids[] array in drivers/spi/spidev.c.")
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spidev.c')
-rw-r--r-- | drivers/spi/spidev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index dd616ff0ffc5..c7de64171c45 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -693,6 +693,7 @@ static struct class *spidev_class; #ifdef CONFIG_OF static const struct of_device_id spidev_dt_ids[] = { { .compatible = "rohm,dh2228fv" }, + { .compatible = "lineartechnology,ltc2488" }, {}, }; MODULE_DEVICE_TABLE(of, spidev_dt_ids); |