1 // SPDX-License-Identifier: GPL-2.0-only 1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 2 /* 3 * Driver for the PCM512x CODECs 3 * Driver for the PCM512x CODECs 4 * 4 * 5 * Author: Mark Brown <broonie@kernel.org 5 * Author: Mark Brown <broonie@kernel.org> 6 * Copyright 2014 Linaro Ltd 6 * Copyright 2014 Linaro Ltd 7 */ 7 */ 8 8 9 #include <linux/init.h> 9 #include <linux/init.h> 10 #include <linux/module.h> 10 #include <linux/module.h> 11 #include <linux/spi/spi.h> 11 #include <linux/spi/spi.h> 12 12 13 #include "pcm512x.h" 13 #include "pcm512x.h" 14 14 15 static int pcm512x_spi_probe(struct spi_device 15 static int pcm512x_spi_probe(struct spi_device *spi) 16 { 16 { 17 struct regmap *regmap; 17 struct regmap *regmap; 18 int ret; 18 int ret; 19 19 20 regmap = devm_regmap_init_spi(spi, &pc 20 regmap = devm_regmap_init_spi(spi, &pcm512x_regmap); 21 if (IS_ERR(regmap)) { 21 if (IS_ERR(regmap)) { 22 ret = PTR_ERR(regmap); 22 ret = PTR_ERR(regmap); 23 return ret; 23 return ret; 24 } 24 } 25 25 26 return pcm512x_probe(&spi->dev, regmap 26 return pcm512x_probe(&spi->dev, regmap); 27 } 27 } 28 28 29 static void pcm512x_spi_remove(struct spi_devi !! 29 static int pcm512x_spi_remove(struct spi_device *spi) 30 { 30 { 31 pcm512x_remove(&spi->dev); 31 pcm512x_remove(&spi->dev); >> 32 return 0; 32 } 33 } 33 34 34 static const struct spi_device_id pcm512x_spi_ 35 static const struct spi_device_id pcm512x_spi_id[] = { 35 { "pcm5121", }, 36 { "pcm5121", }, 36 { "pcm5122", }, 37 { "pcm5122", }, 37 { "pcm5141", }, 38 { "pcm5141", }, 38 { "pcm5142", }, 39 { "pcm5142", }, 39 { "pcm5242", }, << 40 { }, 40 { }, 41 }; 41 }; 42 MODULE_DEVICE_TABLE(spi, pcm512x_spi_id); 42 MODULE_DEVICE_TABLE(spi, pcm512x_spi_id); 43 43 44 static const struct of_device_id pcm512x_of_ma 44 static const struct of_device_id pcm512x_of_match[] = { 45 { .compatible = "ti,pcm5121", }, 45 { .compatible = "ti,pcm5121", }, 46 { .compatible = "ti,pcm5122", }, 46 { .compatible = "ti,pcm5122", }, 47 { .compatible = "ti,pcm5141", }, 47 { .compatible = "ti,pcm5141", }, 48 { .compatible = "ti,pcm5142", }, 48 { .compatible = "ti,pcm5142", }, 49 { .compatible = "ti,pcm5242", }, << 50 { } 49 { } 51 }; 50 }; 52 MODULE_DEVICE_TABLE(of, pcm512x_of_match); 51 MODULE_DEVICE_TABLE(of, pcm512x_of_match); 53 52 54 static struct spi_driver pcm512x_spi_driver = 53 static struct spi_driver pcm512x_spi_driver = { 55 .probe = pcm512x_spi_probe, 54 .probe = pcm512x_spi_probe, 56 .remove = pcm512x_spi_remove, 55 .remove = pcm512x_spi_remove, 57 .id_table = pcm512x_spi_id, 56 .id_table = pcm512x_spi_id, 58 .driver = { 57 .driver = { 59 .name = "pcm512x", 58 .name = "pcm512x", 60 .of_match_table = pcm512x_of_m 59 .of_match_table = pcm512x_of_match, 61 .pm = &pcm512x_pm_ops, 60 .pm = &pcm512x_pm_ops, 62 }, 61 }, 63 }; 62 }; 64 63 65 module_spi_driver(pcm512x_spi_driver); 64 module_spi_driver(pcm512x_spi_driver); 66 65 67 MODULE_DESCRIPTION("ASoC PCM512x codec driver 66 MODULE_DESCRIPTION("ASoC PCM512x codec driver - SPI"); 68 MODULE_AUTHOR("Mark Brown <broonie@kernel.org> 67 MODULE_AUTHOR("Mark Brown <broonie@kernel.org>"); 69 MODULE_LICENSE("GPL v2"); 68 MODULE_LICENSE("GPL v2"); 70 69
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.