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

This is yet another patch set for applying the auto-cleanup macros
to sound/isa/* drivers.  Merely code refactoring and no functional
changes are expected.


Takashi

===

Takashi Iwai (18):
  ALSA: ad1816a: Use guard() for spin locks
  ALSA: cmi8330: Use guard() for spin locks
  ALSA: cs423x: Use guard() for mutex locks
  ALSA: cs423x: Use guard() for spin locks
  ALSA: es1688: Use guard() for spin locks
  ALSA: es18xx: Use guard() for spin locks
  ALSA: gus: Use guard() for mutex locks
  ALSA: gus: Use guard() for spin locks
  ALSA: msnd: Use guard() for spin locks
  ALSA: opl3sa2: Use guard() for spin locks
  ALSA: opti9xx: Use guard() for spin locks
  ALSA: sb: Use guard() for mutex locks
  ALSA: sb: Use guard() for spin locks
  ALSA: emu8000: Use guard() for spin locks
  ALSA: sscape: Use guard() for spin locks
  ALSA: wss: Use guard() for mutex locks
  ALSA: wss: Use guard() for spin locks
  ALSA: wavefront: Use guard() for spin locks

 include/sound/gus.h                   |   1 -
 sound/isa/ad1816a/ad1816a_lib.c       | 117 ++++-------
 sound/isa/cmi8330.c                   |  15 +-
 sound/isa/cs423x/cs4236_lib.c         | 133 +++++-------
 sound/isa/es1688/es1688_lib.c         | 276 ++++++++++++-------------
 sound/isa/es18xx.c                    |  58 ++----
 sound/isa/gus/gus_dma.c               |  88 ++++----
 sound/isa/gus/gus_dram.c              |   8 +-
 sound/isa/gus/gus_io.c                |  65 ++----
 sound/isa/gus/gus_main.c              |  65 +++---
 sound/isa/gus/gus_mem.c               |  33 +--
 sound/isa/gus/gus_mixer.c             |  12 +-
 sound/isa/gus/gus_pcm.c               | 177 ++++++++--------
 sound/isa/gus/gus_reset.c             |  66 ++----
 sound/isa/gus/gus_timer.c             |  16 +-
 sound/isa/gus/gus_uart.c              |  24 +--
 sound/isa/gus/gusextreme.c            |  21 +-
 sound/isa/gus/interwave.c             |  33 ++-
 sound/isa/msnd/msnd.c                 |  29 +--
 sound/isa/msnd/msnd_pinnacle.c        |  11 +-
 sound/isa/msnd/msnd_pinnacle_mixer.c  |   8 +-
 sound/isa/opl3sa2.c                   |  29 +--
 sound/isa/opti9xx/miro.c              |  17 +-
 sound/isa/opti9xx/opti92x-ad1848.c    |  21 +-
 sound/isa/sb/emu8000.c                |  94 ++++-----
 sound/isa/sb/emu8000_pcm.c            |  46 ++---
 sound/isa/sb/sb16.c                   |  11 +-
 sound/isa/sb/sb16_csp.c               | 225 +++++++++-----------
 sound/isa/sb/sb16_main.c              | 123 +++++------
 sound/isa/sb/sb8_main.c               | 168 +++++++--------
 sound/isa/sb/sb8_midi.c               | 121 +++++------
 sound/isa/sb/sb_common.c              |  17 +-
 sound/isa/sb/sb_mixer.c               |  61 ++----
 sound/isa/sscape.c                    | 184 ++++++++---------
 sound/isa/wavefront/wavefront_midi.c  | 129 +++++-------
 sound/isa/wavefront/wavefront_synth.c |  18 +-
 sound/isa/wss/wss_lib.c               | 285 ++++++++++----------------
 37 files changed, 1121 insertions(+), 1684 deletions(-)

-- 
2.50.1


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

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

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-29 14:52 [PATCH 00/18] ALSA: Use auto-cleanup macros for ISA drivers Takashi Iwai
2025-08-29 14:52 ` [PATCH 01/18] ALSA: ad1816a: Use guard() for spin locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 02/18] ALSA: cmi8330: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 03/18] ALSA: cs423x: Use guard() for mutex locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 04/18] ALSA: cs423x: Use guard() for spin locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 05/18] ALSA: es1688: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 06/18] ALSA: es18xx: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 07/18] ALSA: gus: Use guard() for mutex locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 08/18] ALSA: gus: Use guard() for spin locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 09/18] ALSA: msnd: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 10/18] ALSA: opl3sa2: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 11/18] ALSA: opti9xx: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 12/18] ALSA: sb: Use guard() for mutex locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 13/18] ALSA: sb: Use guard() for spin locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 14/18] ALSA: emu8000: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 15/18] ALSA: sscape: " Takashi Iwai
2025-08-29 14:52 ` [PATCH 16/18] ALSA: wss: Use guard() for mutex locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 17/18] ALSA: wss: Use guard() for spin locks Takashi Iwai
2025-08-29 14:52 ` [PATCH 18/18] ALSA: wavefront: " 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).