mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/16] ALSA: PCI: constify snd_pcm_hardware const
@ 2017-08-12 15:31 Bhumika Goyal
  2017-08-12 15:31 ` [PATCH 01/16] ALSA: aw2: make " Bhumika Goyal
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Bhumika Goyal @ 2017-08-12 15:31 UTC (permalink / raw)
  To: julia.lawall, T-Bone, perex, tiwai, clemens, jayakumar.alsa,
	linux-parisc, alsa-devel, linux-kernel
  Cc: Bhumika Goyal

Declare snd_pcm_hardware const. 
Done using Coccinelle.

Bhumika Goyal (16):
  ALSA: aw2: make snd_pcm_hardware const
  ALSA: ca0106: make snd_pcm_hardware const
  ALSA: cs46xx: make snd_pcm_hardware const
  ALSA: korg1212: make snd_pcm_hardware const
  ALSA: cs5535audio: make snd_pcm_hardware const
  ALSA: emu10k1: make snd_pcm_hardware const
  ALSA: lola: make snd_pcm_hardware const
  ALSA: lx6464es: make snd_pcm_hardware const
  ALSA: mixart: make snd_pcm_hardware const
  ALSA: ctxfi: make snd_pcm_hardware const
  ALSA: pcxhr: make snd_pcm_hardware const
  ALSA: riptide: make snd_pcm_hardware const
  ALSA: rme9652: make snd_pcm_hardware const
  ALSA: trident: make snd_pcm_hardware const
  ALSA: ymfpci: make snd_pcm_hardware const
  ALSA: pci: make snd_pcm_hardware const

 sound/pci/ad1889.c                      |  4 ++--
 sound/pci/als300.c                      |  4 ++--
 sound/pci/als4000.c                     |  4 ++--
 sound/pci/atiixp.c                      |  2 +-
 sound/pci/atiixp_modem.c                |  2 +-
 sound/pci/aw2/aw2-alsa.c                |  4 ++--
 sound/pci/bt87x.c                       |  4 ++--
 sound/pci/ca0106/ca0106_main.c          |  4 ++--
 sound/pci/cmipci.c                      | 12 ++++++------
 sound/pci/cs4281.c                      |  4 ++--
 sound/pci/cs46xx/cs46xx_lib.c           |  4 ++--
 sound/pci/cs5535audio/cs5535audio_pcm.c |  4 ++--
 sound/pci/ctxfi/ctpcm.c                 |  6 +++---
 sound/pci/emu10k1/emu10k1x.c            |  4 ++--
 sound/pci/emu10k1/emupcm.c              | 10 +++++-----
 sound/pci/emu10k1/p16v.c                |  4 ++--
 sound/pci/ens1370.c                     |  6 +++---
 sound/pci/es1938.c                      |  4 ++--
 sound/pci/es1968.c                      |  4 ++--
 sound/pci/fm801.c                       |  4 ++--
 sound/pci/intel8x0.c                    |  2 +-
 sound/pci/intel8x0m.c                   |  2 +-
 sound/pci/korg1212/korg1212.c           |  4 ++--
 sound/pci/lola/lola_pcm.c               |  2 +-
 sound/pci/lx6464es/lx6464es.c           |  2 +-
 sound/pci/maestro3.c                    |  4 ++--
 sound/pci/mixart/mixart.c               |  4 ++--
 sound/pci/pcxhr/pcxhr.c                 |  2 +-
 sound/pci/riptide/riptide.c             |  4 ++--
 sound/pci/rme32.c                       |  8 ++++----
 sound/pci/rme96.c                       |  8 ++++----
 sound/pci/rme9652/hdsp.c                |  4 ++--
 sound/pci/rme9652/rme9652.c             |  4 ++--
 sound/pci/sis7019.c                     |  4 ++--
 sound/pci/sonicvibes.c                  |  4 ++--
 sound/pci/trident/trident_main.c        | 10 +++++-----
 sound/pci/via82xx.c                     |  2 +-
 sound/pci/via82xx_modem.c               |  2 +-
 sound/pci/ymfpci/ymfpci_main.c          |  4 ++--
 39 files changed, 85 insertions(+), 85 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2017-08-12 21:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-12 15:31 [PATCH 00/16] ALSA: PCI: constify snd_pcm_hardware const Bhumika Goyal
2017-08-12 15:31 ` [PATCH 01/16] ALSA: aw2: make " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 02/16] ALSA: ca0106: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 03/16] ALSA: cs46xx: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 04/16] ALSA: korg1212: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 05/16] ALSA: cs5535audio: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 06/16] ALSA: emu10k1: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 07/16] ALSA: lola: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 08/16] ALSA: lx6464es: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 09/16] ALSA: mixart: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 10/16] ALSA: ctxfi: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 11/16] ALSA: pcxhr: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 12/16] ALSA: riptide: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 13/16] ALSA: rme9652: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 14/16] ALSA: trident: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 15/16] ALSA: ymfpci: " Bhumika Goyal
2017-08-12 15:31 ` [PATCH 16/16] ALSA: pci: " Bhumika Goyal
2017-08-12 21:32 ` [PATCH 00/16] ALSA: PCI: constify " 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®