ARM: dts: omap5: Add bus_dma_limit for L3 bus
[linux/fpc-iii.git] / sound / soc / codecs / ssm2602-spi.c
blobbb49fb6b62ad3c87b79b8053f54f06d2f2484757
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * SSM2602 SPI audio driver
5 * Copyright 2014 Analog Devices Inc.
6 */
8 #include <linux/module.h>
9 #include <linux/spi/spi.h>
10 #include <linux/regmap.h>
12 #include <sound/soc.h>
14 #include "ssm2602.h"
16 static int ssm2602_spi_probe(struct spi_device *spi)
18 return ssm2602_probe(&spi->dev, SSM2602,
19 devm_regmap_init_spi(spi, &ssm2602_regmap_config));
22 static const struct of_device_id ssm2602_of_match[] = {
23 { .compatible = "adi,ssm2602", },
24 { }
26 MODULE_DEVICE_TABLE(of, ssm2602_of_match);
28 static struct spi_driver ssm2602_spi_driver = {
29 .driver = {
30 .name = "ssm2602",
31 .of_match_table = ssm2602_of_match,
33 .probe = ssm2602_spi_probe,
35 module_spi_driver(ssm2602_spi_driver);
37 MODULE_DESCRIPTION("ASoC SSM2602 SPI driver");
38 MODULE_AUTHOR("Cliff Cai");
39 MODULE_LICENSE("GPL");