2 * SSM2602 SPI audio driver
4 * Copyright 2014 Analog Devices Inc.
6 * Licensed under the GPL-2.
9 #include <linux/module.h>
10 #include <linux/spi/spi.h>
11 #include <linux/regmap.h>
13 #include <sound/soc.h>
17 static int ssm2602_spi_probe(struct spi_device
*spi
)
19 return ssm2602_probe(&spi
->dev
, SSM2602
,
20 devm_regmap_init_spi(spi
, &ssm2602_regmap_config
));
23 static int ssm2602_spi_remove(struct spi_device
*spi
)
25 snd_soc_unregister_codec(&spi
->dev
);
29 static struct spi_driver ssm2602_spi_driver
= {
34 .probe
= ssm2602_spi_probe
,
35 .remove
= ssm2602_spi_remove
,
37 module_spi_driver(ssm2602_spi_driver
);
39 MODULE_DESCRIPTION("ASoC SSM2602 SPI driver");
40 MODULE_AUTHOR("Cliff Cai");
41 MODULE_LICENSE("GPL");