summaryrefslogtreecommitdiff
path: root/sound/soc/codecs/cs35l45-spi.c
diff options
context:
space:
mode:
authorVlad.Karpovich <vkarpovi@opensource.cirrus.com>2023-03-15 10:47:21 -0500
committerMark Brown <broonie@kernel.org>2023-03-21 12:46:41 +0000
commit74b14e2850a34740c121cf2758d4181063d4c77c (patch)
treeee8ea0f8c21fb2c26d1767cf5c01d5eaf1a632f5 /sound/soc/codecs/cs35l45-spi.c
parent6085f9e6dc1973cf98ee7f5dcf629939e50f1b84 (diff)
ASoC: cs35l45: DSP Support
The CS35L45 digital core incorporates one programmable DSP block, capable of running a wide range of audio enhancement and speaker and battery protection functions. Signed-off-by: Vlad Karpovich <vkarpovi@opensource.cirrus.com> Link: https://lore.kernel.org/r/167933510679.26.5992985447093367768@mailman-core.alsa-project.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/cs35l45-spi.c')
-rw-r--r--sound/soc/codecs/cs35l45-spi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/codecs/cs35l45-spi.c b/sound/soc/codecs/cs35l45-spi.c
index 6166cff417be..99657325a281 100644
--- a/sound/soc/codecs/cs35l45-spi.c
+++ b/sound/soc/codecs/cs35l45-spi.c
@@ -23,6 +23,9 @@ static int cs35l45_spi_probe(struct spi_device *spi)
if (cs35l45 == NULL)
return -ENOMEM;
+ spi->max_speed_hz = CS35L45_SPI_MAX_FREQ;
+ spi_setup(spi);
+
spi_set_drvdata(spi, cs35l45);
cs35l45->regmap = devm_regmap_init_spi(spi, &cs35l45_spi_regmap);
if (IS_ERR(cs35l45->regmap)) {