Message ID | 20230828170525.335671-1-vkarpovi@opensource.cirrus.com (mailing list archive) |
---|---|
State | Accepted |
Commit | bfd73b601ac880d7cfbafbb770c3d6195e73add3 |
Headers | show |
Series | [1/7] ASoC: cs35l45: Add support for Chip ID 0x35A460 | expand |
On Mon, 28 Aug 2023 12:05:19 -0500, Vlad Karpovich wrote: > The 0x35A460 chip is a different variant of the cs35l45. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/7] ASoC: cs35l45: Add support for Chip ID 0x35A460 commit: bfd73b601ac880d7cfbafbb770c3d6195e73add3 [2/7] ASoC: cs35l45: Fix "Dead assigment" warning commit: a47f7bf97c9836ff312b421fe392f13401c60c7b [5/7] ASoC: cs35l45: Rename DACPCM1 Source control commit: e041b85006f40a4f9799c385ec1a7fb8bdb0c228 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/codecs/cs35l45.c b/sound/soc/codecs/cs35l45.c index 8f480df7f29a..7f116ae97acd 100644 --- a/sound/soc/codecs/cs35l45.c +++ b/sound/soc/codecs/cs35l45.c @@ -1078,6 +1078,7 @@ static int cs35l45_initialize(struct cs35l45_private *cs35l45) switch (dev_id[0]) { case 0x35A450: + case 0x35A460: break; default: dev_err(cs35l45->dev, "Bad DEVID 0x%x\n", dev_id[0]);
The 0x35A460 chip is a different variant of the cs35l45. Signed-off-by: Vlad Karpovich <vkarpovi@opensource.cirrus.com> --- sound/soc/codecs/cs35l45.c | 1 + 1 file changed, 1 insertion(+)