1 // SPDX-License-Identifier: GPL-2.0-only << 2 /* 1 /* 3 * SSM2602 SPI audio driver 2 * SSM2602 SPI audio driver 4 * 3 * 5 * Copyright 2014 Analog Devices Inc. 4 * Copyright 2014 Analog Devices Inc. >> 5 * >> 6 * Licensed under the GPL-2. 6 */ 7 */ 7 8 8 #include <linux/module.h> 9 #include <linux/module.h> 9 #include <linux/spi/spi.h> 10 #include <linux/spi/spi.h> 10 #include <linux/regmap.h> 11 #include <linux/regmap.h> 11 12 12 #include <sound/soc.h> 13 #include <sound/soc.h> 13 14 14 #include "ssm2602.h" 15 #include "ssm2602.h" 15 16 16 static int ssm2602_spi_probe(struct spi_device 17 static int ssm2602_spi_probe(struct spi_device *spi) 17 { 18 { 18 return ssm2602_probe(&spi->dev, SSM260 19 return ssm2602_probe(&spi->dev, SSM2602, 19 devm_regmap_init_spi(spi, &ssm 20 devm_regmap_init_spi(spi, &ssm2602_regmap_config)); 20 } 21 } 21 22 >> 23 static int ssm2602_spi_remove(struct spi_device *spi) >> 24 { >> 25 snd_soc_unregister_codec(&spi->dev); >> 26 return 0; >> 27 } >> 28 22 static const struct of_device_id ssm2602_of_ma 29 static const struct of_device_id ssm2602_of_match[] = { 23 { .compatible = "adi,ssm2602", }, 30 { .compatible = "adi,ssm2602", }, 24 { } 31 { } 25 }; 32 }; 26 MODULE_DEVICE_TABLE(of, ssm2602_of_match); 33 MODULE_DEVICE_TABLE(of, ssm2602_of_match); 27 34 28 static struct spi_driver ssm2602_spi_driver = 35 static struct spi_driver ssm2602_spi_driver = { 29 .driver = { 36 .driver = { 30 .name = "ssm2602", 37 .name = "ssm2602", 31 .of_match_table = ssm2602_of_m 38 .of_match_table = ssm2602_of_match, 32 }, 39 }, 33 .probe = ssm2602_spi_probe, 40 .probe = ssm2602_spi_probe, >> 41 .remove = ssm2602_spi_remove, 34 }; 42 }; 35 module_spi_driver(ssm2602_spi_driver); 43 module_spi_driver(ssm2602_spi_driver); 36 44 37 MODULE_DESCRIPTION("ASoC SSM2602 SPI driver"); 45 MODULE_DESCRIPTION("ASoC SSM2602 SPI driver"); 38 MODULE_AUTHOR("Cliff Cai"); 46 MODULE_AUTHOR("Cliff Cai"); 39 MODULE_LICENSE("GPL"); 47 MODULE_LICENSE("GPL"); 40 48
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.