From: Takashi Iwai <tiwai@suse.de>
To: linux-sound@vger.kernel.org
Cc: Takashi Sakamoto <o-takashi@sakamocchi.jp>,
Clemens Ladisch <clemens@ladisch.de>
Subject: [PATCH 00/19] ALSA: firewire: Use auto-cleanup macros
Date: Wed, 27 Aug 2025 11:19:54 +0200 [thread overview]
Message-ID: <20250827092017.29014-1-tiwai@suse.de> (raw)
This is another patch set for cleaning up the code with the recent
auto-cleanup macros like guard() & co, applied to FireWire sound
drivers.
Only code refactoring, and no behavior changes intended.
Takashi
===
Takashi Iwai (19):
ALSA: firewire: bebob: Use guard() for mutex locks
ALSA: firewire: dice: Use guard() for mutex locks
ALSA: firewire: Use guard() for mutex locks
ALSA: firewire: fireworks: Use guard() for mutex locks
ALSA: firewire: motu: Use guard() for mutex locks
ALSA: firewire: oxfw: Use guard() for mutex locks
ALSA: firewire: tascam: Use guard() for mutex locks
ALSA: firewire: fireface: Use guard() for mutex locks
ALSA: firewire: isight: Use guard() for mutex locks
ALSA: firewire: lib: Use guard() for mutex locks
ALSA: firewire: bebob: Use guard() for spin locks
ALSA: firewire: dice: Use guard() for spin locks
ALSA: firewire: digi00x: Use guard() for spin locks
ALSA: firewire: fireface: Use guard() for spin locks
ALSA: firewire: fireworks: Use guard() for spin locks
ALSA: firewire: motu: Use guard() for spin locks
ALSA: firewire: oxfw: Use guard() for spin locks
ALSA: firewire: tascam: Use guard() for spin locks
ALSA: firewire: lib: Use guard() for spin locks
sound/firewire/amdtp-stream.c | 28 ++----
sound/firewire/bebob/bebob.c | 36 ++++---
sound/firewire/bebob/bebob_hwdep.c | 37 ++------
sound/firewire/bebob/bebob_maudio.c | 42 +++------
sound/firewire/bebob/bebob_midi.c | 34 +++----
sound/firewire/bebob/bebob_pcm.c | 67 ++++++-------
sound/firewire/bebob/bebob_stream.c | 21 ++---
sound/firewire/cmp.c | 37 ++------
sound/firewire/dice/dice-hwdep.c | 37 ++------
sound/firewire/dice/dice-midi.c | 38 +++-----
sound/firewire/dice/dice-pcm.c | 90 ++++++++----------
sound/firewire/dice/dice-stream.c | 21 ++---
sound/firewire/dice/dice-transaction.c | 7 +-
sound/firewire/dice/dice.c | 3 +-
sound/firewire/digi00x/digi00x-hwdep.c | 37 ++------
sound/firewire/digi00x/digi00x-midi.c | 34 +++----
sound/firewire/digi00x/digi00x-pcm.c | 72 ++++++--------
sound/firewire/digi00x/digi00x-stream.c | 21 ++---
sound/firewire/digi00x/digi00x-transaction.c | 8 +-
sound/firewire/digi00x/digi00x.c | 3 +-
sound/firewire/fcp.c | 19 ++--
sound/firewire/fireface/ff-hwdep.c | 37 ++------
sound/firewire/fireface/ff-midi.c | 10 +-
sound/firewire/fireface/ff-pcm.c | 91 ++++++++----------
sound/firewire/fireface/ff-stream.c | 21 ++---
sound/firewire/fireface/ff-transaction.c | 4 +-
sound/firewire/fireworks/fireworks.c | 39 ++++----
sound/firewire/fireworks/fireworks_command.c | 16 ++--
sound/firewire/fireworks/fireworks_hwdep.c | 41 +++-----
sound/firewire/fireworks/fireworks_midi.c | 37 +++-----
sound/firewire/fireworks/fireworks_pcm.c | 64 ++++++-------
sound/firewire/fireworks/fireworks_stream.c | 21 ++---
.../fireworks/fireworks_transaction.c | 39 +++-----
sound/firewire/isight.c | 20 ++--
sound/firewire/iso-resources.c | 66 ++++++-------
.../motu/motu-command-dsp-message-parser.c | 9 +-
sound/firewire/motu/motu-hwdep.c | 30 ++----
sound/firewire/motu/motu-midi.c | 38 +++-----
sound/firewire/motu/motu-pcm.c | 93 +++++++++----------
.../motu/motu-register-dsp-message-parser.c | 18 +---
sound/firewire/motu/motu-stream.c | 21 ++---
sound/firewire/motu/motu-transaction.c | 7 +-
sound/firewire/oxfw/oxfw-hwdep.c | 37 ++------
sound/firewire/oxfw/oxfw-midi.c | 62 +++++--------
sound/firewire/oxfw/oxfw-pcm.c | 89 ++++++++----------
sound/firewire/oxfw/oxfw-stream.c | 21 ++---
sound/firewire/oxfw/oxfw.c | 3 +-
sound/firewire/tascam/amdtp-tascam.c | 15 ++-
sound/firewire/tascam/tascam-hwdep.c | 37 ++------
sound/firewire/tascam/tascam-midi.c | 10 +-
sound/firewire/tascam/tascam-pcm.c | 68 ++++++--------
sound/firewire/tascam/tascam-stream.c | 21 ++---
sound/firewire/tascam/tascam.c | 3 +-
53 files changed, 657 insertions(+), 1123 deletions(-)
--
2.50.1
next reply other threads:[~2025-08-27 9:20 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-27 9:19 Takashi Iwai [this message]
2025-08-27 9:19 ` [PATCH 01/19] ALSA: firewire: bebob: Use guard() for mutex locks Takashi Iwai
2025-08-27 9:19 ` [PATCH 02/19] ALSA: firewire: dice: " Takashi Iwai
2025-08-27 9:19 ` [PATCH 03/19] ALSA: firewire: " Takashi Iwai
2025-08-27 9:19 ` [PATCH 04/19] ALSA: firewire: fireworks: " Takashi Iwai
2025-08-27 9:19 ` [PATCH 05/19] ALSA: firewire: motu: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 06/19] ALSA: firewire: oxfw: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 07/19] ALSA: firewire: tascam: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 08/19] ALSA: firewire: fireface: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 09/19] ALSA: firewire: isight: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 10/19] ALSA: firewire: lib: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 11/19] ALSA: firewire: bebob: Use guard() for spin locks Takashi Iwai
2025-08-27 9:20 ` [PATCH 12/19] ALSA: firewire: dice: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 13/19] ALSA: firewire: digi00x: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 14/19] ALSA: firewire: fireface: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 15/19] ALSA: firewire: fireworks: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 16/19] ALSA: firewire: motu: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 17/19] ALSA: firewire: oxfw: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 18/19] ALSA: firewire: tascam: " Takashi Iwai
2025-08-27 9:20 ` [PATCH 19/19] ALSA: firewire: lib: " Takashi Iwai
2025-08-28 12:56 ` [PATCH 00/19] ALSA: firewire: Use auto-cleanup macros Takashi Sakamoto
2025-08-28 13:23 ` 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=20250827092017.29014-1-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=clemens@ladisch.de \
--cc=linux-sound@vger.kernel.org \
--cc=o-takashi@sakamocchi.jp \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.