linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] ASoC: remaining simple i2c probe changes
@ 2022-04-05 16:58 Stephen Kitt
  2022-04-05 16:58 ` [PATCH 01/14] ASoC: ak4*: use simple i2c probe function Stephen Kitt
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Stephen Kitt @ 2022-04-05 16:58 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown; +Cc: Wolfram Sang, linux-kernel, Stephen Kitt

This series covers all the remaining changes to migrate
sound/soc/codecs i2c probes to probe_new, where the const struct
i2c_client * argument is unused; there are a few remaining files which
use the argument and will need i2c_match_id migration.

These are all files without a more specific maintainer than Liam and
Mark as SoC supporters (unlike all my previous patches).

Stephen Kitt (14):
  ASoC: ak4*: use simple i2c probe function
  ASoC: cx2072x: use simple i2c probe function
  ASoC: es83*: use simple i2c probe function
  ASoC: lm4857: use simple i2c probe function
  ASoC: max9*: use simple i2c probe function
  ASoC: ml26124: use simple i2c probe function
  ASoC: nau8*: use simple i2c probe function
  ASoC: pcm*: use simple i2c probe function
  ASoC: sta*: use simple i2c probe function
  ASoC: tas*: use simple i2c probe function
  ASoC: tda7419: use simple i2c probe function
  ASoC: tlv320*: use simple i2c probe function
  ASoC: ts3a227e: use simple i2c probe function
  ASoC: uda1380: use simple i2c probe function

 sound/soc/codecs/ak4118.c          | 5 ++---
 sound/soc/codecs/ak4535.c          | 5 ++---
 sound/soc/codecs/ak4641.c          | 5 ++---
 sound/soc/codecs/ak4671.c          | 5 ++---
 sound/soc/codecs/cx2072x.c         | 5 ++---
 sound/soc/codecs/es8316.c          | 5 ++---
 sound/soc/codecs/es8328-i2c.c      | 5 ++---
 sound/soc/codecs/lm4857.c          | 5 ++---
 sound/soc/codecs/max9768.c         | 5 ++---
 sound/soc/codecs/max98371.c        | 5 ++---
 sound/soc/codecs/max98373-i2c.c    | 5 ++---
 sound/soc/codecs/max98390.c        | 5 ++---
 sound/soc/codecs/max9850.c         | 5 ++---
 sound/soc/codecs/max98504.c        | 5 ++---
 sound/soc/codecs/max98520.c        | 4 ++--
 sound/soc/codecs/max9867.c         | 5 ++---
 sound/soc/codecs/max9877.c         | 5 ++---
 sound/soc/codecs/max98925.c        | 5 ++---
 sound/soc/codecs/max98926.c        | 5 ++---
 sound/soc/codecs/max98927.c        | 5 ++---
 sound/soc/codecs/ml26124.c         | 5 ++---
 sound/soc/codecs/nau8540.c         | 5 ++---
 sound/soc/codecs/nau8810.c         | 5 ++---
 sound/soc/codecs/nau8821.c         | 5 ++---
 sound/soc/codecs/nau8822.c         | 5 ++---
 sound/soc/codecs/nau8824.c         | 5 ++---
 sound/soc/codecs/nau8825.c         | 5 ++---
 sound/soc/codecs/pcm1681.c         | 5 ++---
 sound/soc/codecs/pcm1789-i2c.c     | 5 ++---
 sound/soc/codecs/pcm179x-i2c.c     | 5 ++---
 sound/soc/codecs/pcm3168a-i2c.c    | 5 ++---
 sound/soc/codecs/pcm512x-i2c.c     | 5 ++---
 sound/soc/codecs/sta32x.c          | 5 ++---
 sound/soc/codecs/sta350.c          | 5 ++---
 sound/soc/codecs/sta529.c          | 5 ++---
 sound/soc/codecs/tas2552.c         | 5 ++---
 sound/soc/codecs/tas2764.c         | 5 ++---
 sound/soc/codecs/tas2770.c         | 5 ++---
 sound/soc/codecs/tas5086.c         | 5 ++---
 sound/soc/codecs/tas6424.c         | 5 ++---
 sound/soc/codecs/tda7419.c         | 5 ++---
 sound/soc/codecs/tlv320adcx140.c   | 5 ++---
 sound/soc/codecs/tlv320aic23-i2c.c | 5 ++---
 sound/soc/codecs/tlv320dac33.c     | 5 ++---
 sound/soc/codecs/ts3a227e.c        | 5 ++---
 sound/soc/codecs/uda1380.c         | 5 ++---
 46 files changed, 92 insertions(+), 137 deletions(-)

-- 
2.27.0


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2022-04-12 17:38 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-05 16:58 [PATCH 00/14] ASoC: remaining simple i2c probe changes Stephen Kitt
2022-04-05 16:58 ` [PATCH 01/14] ASoC: ak4*: use simple i2c probe function Stephen Kitt
2022-04-05 16:58 ` [PATCH 02/14] ASoC: cx2072x: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 03/14] ASoC: es83*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 04/14] ASoC: lm4857: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 05/14] ASoC: max9*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 06/14] ASoC: ml26124: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 07/14] ASoC: nau8*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 08/14] ASoC: pcm*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 09/14] ASoC: sta*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 10/14] ASoC: tas*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 11/14] ASoC: tda7419: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 12/14] ASoC: tlv320*: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 13/14] ASoC: ts3a227e: " Stephen Kitt
2022-04-05 16:58 ` [PATCH 14/14] ASoC: uda1380: " Stephen Kitt
2022-04-12 17:38 ` [PATCH 00/14] ASoC: remaining simple i2c probe changes Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).