linux-sound.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] ALSA: Use auto-cleanup for misc drivers
@ 2025-08-29 15:13 Takashi Iwai
  2025-08-29 15:13 ` [PATCH 01/19] ALSA: i2c: Use guard() for mutex locks Takashi Iwai
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Takashi Iwai @ 2025-08-29 15:13 UTC (permalink / raw)
  To: linux-sound

Finally, this is the last piece in my large patch series -- applying
the auto-cleanup macros to the remaining legacy stuff such as
sound/i2c, sound/synth, etc.  Again, merely code cleanup / refactoring
and no functional changes are expected.


Takashi

===

Takashi Iwai (19):
  ALSA: i2c: Use guard() for mutex locks
  ALSA: i2c: Use guard() for spin locks
  ALSA: synth: Use guard() for mutex locks
  ALSA: synth: Use guard() for spin locks
  ALSA: synth: Use guard() for preset locks
  ALSA: x86: Use guard() for mutex locks
  ALSA: x86: Use guard() for spin locks
  ALSA: xen: Use guard() for mutex locks
  ALSA: at73c213: Use guard() for mutex locks
  ALSA: pdaudiocf: Use guard() for mutex locks
  ALSA: vxpocket: Use guard() for mutex locks
  ALSA: sparc: Use guard() for mutex locks
  ALSA: aoa: Use guard() for mutex locks
  ALSA: aaci: Use guard() for mutex locks
  ALSA: pxa2xx: Use guard() for mutex locks
  ALSA: atmel: Use guard() for mutex locks
  ALSA: ac97bus: Use guard() for mutex locks
  ALSA: virtio: Use guard() for spin locks
  ALSA: misc: Use guard() for spin locks

 include/sound/soundfont.h               |  18 ++++
 sound/ac97/bus.c                        |  22 ++---
 sound/aoa/codecs/onyx.c                 | 104 +++++++--------------
 sound/aoa/codecs/tas.c                  | 113 ++++++++---------------
 sound/aoa/core/gpio-feature.c           |  20 ++---
 sound/aoa/core/gpio-pmf.c               |  26 ++----
 sound/aoa/soundbus/i2sbus/pcm.c         |  76 ++++++----------
 sound/arm/aaci.c                        |  20 ++---
 sound/arm/pxa2xx-ac97-lib.c             |  12 +--
 sound/atmel/ac97c.c                     |  18 ++--
 sound/core/misc.c                       |  25 +++---
 sound/i2c/other/ak4113.c                |  54 ++++++-----
 sound/i2c/other/ak4114.c                |  39 ++++----
 sound/i2c/other/ak4117.c                |  40 ++++-----
 sound/pcmcia/pdaudiocf/pdaudiocf_core.c |   3 +-
 sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c  |  25 +++---
 sound/pcmcia/vx/vxp_mixer.c             |   9 +-
 sound/pcmcia/vx/vxp_ops.c               |   6 +-
 sound/sparc/cs4231.c                    |  21 ++---
 sound/spi/at73c213.c                    |  39 +++-----
 sound/synth/emux/emux_effect.c          |  29 +++---
 sound/synth/emux/emux_proc.c            |   6 +-
 sound/synth/emux/emux_seq.c             |  17 ++--
 sound/synth/emux/emux_synth.c           |  54 +++--------
 sound/synth/emux/soundfont.c            | 115 +++++++-----------------
 sound/synth/util_mem.c                  |  17 ++--
 sound/virtio/virtio_card.c              |   8 +-
 sound/virtio/virtio_ctl_msg.c           |  23 ++---
 sound/virtio/virtio_pcm.c               |   8 +-
 sound/virtio/virtio_pcm_msg.c           |  17 +---
 sound/virtio/virtio_pcm_ops.c           |  56 ++++--------
 sound/x86/intel_hdmi_audio.c            | 109 +++++++++-------------
 sound/xen/xen_snd_front.c               |  80 ++++++++---------
 sound/xen/xen_snd_front_evtchnl.c       |  33 ++++---
 34 files changed, 468 insertions(+), 794 deletions(-)

-- 
2.50.1


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

end of thread, other threads:[~2025-08-29 15:14 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-29 15:13 [PATCH 00/19] ALSA: Use auto-cleanup for misc drivers Takashi Iwai
2025-08-29 15:13 ` [PATCH 01/19] ALSA: i2c: Use guard() for mutex locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 02/19] ALSA: i2c: Use guard() for spin locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 03/19] ALSA: synth: Use guard() for mutex locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 04/19] ALSA: synth: Use guard() for spin locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 05/19] ALSA: synth: Use guard() for preset locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 06/19] ALSA: x86: Use guard() for mutex locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 07/19] ALSA: x86: Use guard() for spin locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 08/19] ALSA: xen: Use guard() for mutex locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 09/19] ALSA: at73c213: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 10/19] ALSA: pdaudiocf: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 11/19] ALSA: vxpocket: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 12/19] ALSA: sparc: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 13/19] ALSA: aoa: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 14/19] ALSA: aaci: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 15/19] ALSA: pxa2xx: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 16/19] ALSA: atmel: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 17/19] ALSA: ac97bus: " Takashi Iwai
2025-08-29 15:13 ` [PATCH 18/19] ALSA: virtio: Use guard() for spin locks Takashi Iwai
2025-08-29 15:13 ` [PATCH 19/19] ALSA: misc: " Takashi Iwai

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).