diff options
author | Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> | 2014-09-29 22:41:10 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-09-30 13:27:27 +0100 |
commit | 555b9ee1368a9ceddd5c963ad918db5120638674 (patch) | |
tree | 155751d595b0e076783b7d808d0dc5690fd0c5d1 /sound/soc/codecs/ssm2602-spi.c | |
parent | fe2a08b3bf1a6e35c00e18843bc19aa1778432c3 (diff) | |
download | lwn-555b9ee1368a9ceddd5c963ad918db5120638674.tar.gz lwn-555b9ee1368a9ceddd5c963ad918db5120638674.zip |
ASoC: ssm2602: add device tree bindings
Allow the ssm2602/ssm2603/ssm2604 codec driver to be
instantiated from the device tree.
Also, add Kconfig prompts to allow manual selection of both the
I2C and SPI configuration versions of the driver.
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Signed-off-by: Mark Brown <broonie@kernel.org>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Diffstat (limited to 'sound/soc/codecs/ssm2602-spi.c')
-rw-r--r-- | sound/soc/codecs/ssm2602-spi.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/codecs/ssm2602-spi.c b/sound/soc/codecs/ssm2602-spi.c index 2bf55e24a7bb..b5df14fbe3ad 100644 --- a/sound/soc/codecs/ssm2602-spi.c +++ b/sound/soc/codecs/ssm2602-spi.c @@ -26,10 +26,17 @@ static int ssm2602_spi_remove(struct spi_device *spi) return 0; } +static const struct of_device_id ssm2602_of_match[] = { + { .compatible = "adi,ssm2602", }, + { } +}; +MODULE_DEVICE_TABLE(of, ssm2602_of_match); + static struct spi_driver ssm2602_spi_driver = { .driver = { .name = "ssm2602", .owner = THIS_MODULE, + .of_match_table = ssm2602_of_match, }, .probe = ssm2602_spi_probe, .remove = ssm2602_spi_remove, |