mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 00/23] ALSA: fix typos in comments
@ 2026-09-15  8:44 Hemanth Selam
  2026-09-15  8:44 ` [PATCH v2 01/23] ALSA: core: seq: oss: " Hemanth Selam
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Hemanth Selam @ 2026-09-15  8:44 UTC (permalink / raw)
  To: Takashi Iwai, Jaroslav Kysela
  Cc: linux-sound, linux-kernel, Takashi Sakamoto, Clemens Ladisch

v1 was a single patch touching 35 files, which was too coarse and would
get in the way of backporting real fixes later on.

This v2 splits it per driver, so each patch stays confined to one driver
and can be dropped or backported on its own.  Drivers made up of several
files (hda, usb-audio, i2c, ac97, ...) are kept together in a single
patch rather than going all the way down to one patch per file.

Comments only, no functional change.  The combined diff of this series
is identical to v1 except for a trailing whitespace dropped from one
cs46xx comment line that checkpatch complained about.

Built with allmodconfig on x86, sound/ compiles clean with no new
warnings.  sound/mips/hal2.c and sound/ppc/tumbler.c are arch-gated so
they were not compile-tested here; both are comment-only as well.

v1: https://lore.kernel.org/all/20260907063202.20577-1-hemanth.selam@gmail.com/

Hemanth Selam (23):
  ALSA: core: seq: oss: fix typos in comments
  ALSA: hda: fix typos in comments
  ALSA: usb-audio: fix typos in comments
  ALSA: i2c: fix typos in comments
  ALSA: emu10k1: fix typos in comments
  ALSA: emux: fix typos in comments
  ALSA: firewire: bebob: fix typos in comments
  ALSA: opti9xx: fix typos in comments
  ALSA: hal2: fix typos in comments
  ALSA: ppc: tumbler: fix typos in comments
  ALSA: ac97: fix typos in comments
  ALSA: au88x0: fix typos in comments
  ALSA: aw2: fix typos in comments
  ALSA: cs4281: fix typos in comments
  ALSA: cs46xx: fix typos in comments
  ALSA: echoaudio: fix typos in comments
  ALSA: lx6464es: fix typos in comments
  ALSA: pcxhr: fix typos in comments
  ALSA: riptide: fix typos in comments
  ALSA: rme32: fix typos in comments
  ALSA: hdsp: fix typos in comments
  ALSA: trident: fix typos in comments
  ALSA: vx: fix typos in comments

 include/sound/emu10k1.h             | 4 ++--
 include/sound/emux_legacy.h         | 2 +-
 sound/core/seq/oss/seq_oss_init.c   | 2 +-
 sound/firewire/bebob/bebob_hwdep.c  | 2 +-
 sound/hda/codecs/hdmi/hdmi.c        | 2 +-
 sound/hda/codecs/realtek/alc882.c   | 2 +-
 sound/hda/codecs/sigmatel.c         | 6 +++---
 sound/hda/common/codec.c            | 2 +-
 sound/i2c/other/ak4113.c            | 2 +-
 sound/i2c/other/ak4114.c            | 2 +-
 sound/i2c/other/ak4xxx-adda.c       | 2 +-
 sound/isa/opti9xx/opti92x-ad1848.c  | 2 +-
 sound/mips/hal2.c                   | 4 ++--
 sound/pci/ac97/ac97_codec.c         | 2 +-
 sound/pci/ac97/ac97_patch.c         | 2 +-
 sound/pci/au88x0/au88x0.h           | 2 +-
 sound/pci/au88x0/au88x0_mpu401.c    | 2 +-
 sound/pci/aw2/aw2-saa7146.c         | 4 ++--
 sound/pci/cs4281.c                  | 2 +-
 sound/pci/cs46xx/cs46xx_lib.c       | 6 +++---
 sound/pci/cs46xx/dsp_spos_scb_lib.c | 8 ++++----
 sound/pci/echoaudio/echoaudio.c     | 4 ++--
 sound/pci/echoaudio/echoaudio.h     | 4 ++--
 sound/pci/lx6464es/lx_core.c        | 2 +-
 sound/pci/lx6464es/lx_defs.h        | 2 +-
 sound/pci/pcxhr/pcxhr_core.c        | 4 ++--
 sound/pci/riptide/riptide.c         | 4 ++--
 sound/pci/rme32.c                   | 2 +-
 sound/pci/rme9652/hdsp.c            | 2 +-
 sound/pci/trident/trident_memory.c  | 2 +-
 sound/pci/vx222/vx222_ops.c         | 2 +-
 sound/pcmcia/vx/vxp_ops.c           | 2 +-
 sound/ppc/tumbler.c                 | 2 +-
 sound/usb/mixer.c                   | 4 ++--
 sound/usb/mixer_us16x08.h           | 2 +-
 35 files changed, 50 insertions(+), 50 deletions(-)


base-commit: 2e4c9ab2574eeaa7b893c7d35b4a9f60fd681ddd
-- 
2.48.1


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

end of thread, other threads:[~2026-09-15 10:08 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-15  8:44 [PATCH v2 00/23] ALSA: fix typos in comments Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 01/23] ALSA: core: seq: oss: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 02/23] ALSA: hda: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 03/23] ALSA: usb-audio: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 04/23] ALSA: i2c: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 05/23] ALSA: emu10k1: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 06/23] ALSA: emux: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 07/23] ALSA: firewire: bebob: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 08/23] ALSA: opti9xx: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 09/23] ALSA: hal2: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 10/23] ALSA: ppc: tumbler: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 11/23] ALSA: ac97: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 12/23] ALSA: au88x0: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 13/23] ALSA: aw2: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 14/23] ALSA: cs4281: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 15/23] ALSA: cs46xx: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 16/23] ALSA: echoaudio: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 17/23] ALSA: lx6464es: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 18/23] ALSA: pcxhr: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 19/23] ALSA: riptide: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 20/23] ALSA: rme32: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 21/23] ALSA: hdsp: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 22/23] ALSA: trident: " Hemanth Selam
2026-09-15  8:44 ` [PATCH v2 23/23] ALSA: vx: " Hemanth Selam
2026-09-15 10:08 ` [PATCH v2 00/23] ALSA: " Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®