diff options
author | Fabien Lahoudere <fabien.lahoudere@collabora.co.uk> | 2016-10-06 16:44:27 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-10-21 13:09:57 +0200 |
commit | 144235ea752b4d56d66fe03bb6b7fae7e0032404 (patch) | |
tree | ced42743b448f7ec1e3c4ee8bc4af8be0e4878ef /drivers/spi | |
parent | Linux 4.9-rc1 (diff) | |
download | linux-144235ea752b4d56d66fe03bb6b7fae7e0032404.tar.xz linux-144235ea752b4d56d66fe03bb6b7fae7e0032404.zip |
spi: spidev: Add device to spidev device tree compatibility list
Entries are needed in the spidev ID list to configure configure it from a
device tree. Add entry for the following device:
- "ge,achc" : GE Healthcare USB Management Controller
The USB Management Controller does not expose USB to the host, but acts as
an offload engine, communicating with specific USB based data acquisition
devices which are connected to it, extracting the required data and
providing it to the host via other methods. SPI is used as an out-of-band
configuration channel.
Signed-off-by: Fabien Lahoudere <fabien.lahoudere@collabora.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-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 2e05046f866b..9e2e099baf8c 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -696,6 +696,7 @@ static struct class *spidev_class; static const struct of_device_id spidev_dt_ids[] = { { .compatible = "rohm,dh2228fv" }, { .compatible = "lineartechnology,ltc2488" }, + { .compatible = "ge,achc" }, {}, }; MODULE_DEVICE_TABLE(of, spidev_dt_ids); |