linux-sound.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: linux-sound@vger.kernel.org
Subject: [PATCH 00/19] ALSA: Use auto-cleanup for misc drivers
Date: Fri, 29 Aug 2025 17:13:14 +0200	[thread overview]
Message-ID: <20250829151335.7342-1-tiwai@suse.de> (raw)

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


             reply	other threads:[~2025-08-29 15:13 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-29 15:13 Takashi Iwai [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250829151335.7342-1-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=linux-sound@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).