All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] constify snd_soc_ops structures
@ 2016-10-15 14:55 ` Julia Lawall
  0 siblings, 0 replies; 60+ messages in thread
From: Julia Lawall @ 2016-10-15 14:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: kernel-janitors, alsa-devel, Takashi Iwai, Jaroslav Kysela,
	Mark Brown, Liam Girdwood, linux-arm-kernel, linux-rockchip,
	linux-tegra

Constify snd_soc_ops structures.

---

 sound/soc/atmel/atmel_wm8904.c                  |    2 +-
 sound/soc/fsl/fsl-asoc-card.c                   |    2 +-
 sound/soc/fsl/imx-wm8962.c                      |    2 +-
 sound/soc/generic/simple-card.c                 |    2 +-
 sound/soc/generic/simple-scu-card.c             |    2 +-
 sound/soc/intel/boards/bdw-rt5677.c             |    2 +-
 sound/soc/intel/boards/broadwell.c              |    2 +-
 sound/soc/intel/boards/bxt_da7219_max98357a.c   |    4 ++--
 sound/soc/intel/boards/bxt_rt298.c              |    4 ++--
 sound/soc/intel/boards/bytcr_rt5640.c           |    4 ++--
 sound/soc/intel/boards/bytcr_rt5651.c           |    4 ++--
 sound/soc/intel/boards/cht_bsw_max98090_ti.c    |    4 ++--
 sound/soc/intel/boards/cht_bsw_rt5645.c         |    4 ++--
 sound/soc/intel/boards/cht_bsw_rt5672.c         |    4 ++--
 sound/soc/intel/boards/haswell.c                |    2 +-
 sound/soc/intel/boards/skl_nau88l25_max98357a.c |    6 +++---
 sound/soc/intel/boards/skl_nau88l25_ssm4567.c   |    6 +++---
 sound/soc/intel/boards/skl_rt286.c              |    4 ++--
 sound/soc/kirkwood/armada-370-db.c              |    2 +-
 sound/soc/mxs/mxs-sgtl5000.c                    |    2 +-
 sound/soc/qcom/storm.c                          |    2 +-
 sound/soc/rockchip/rk3399_gru_sound.c           |    6 +++---
 sound/soc/rockchip/rockchip_max98090.c          |    2 +-
 sound/soc/rockchip/rockchip_rt5645.c            |    2 +-
 sound/soc/tegra/tegra_alc5632.c                 |    2 +-
 sound/soc/tegra/tegra_max98090.c                |    2 +-
 sound/soc/tegra/tegra_rt5640.c                  |    2 +-
 sound/soc/tegra/tegra_rt5677.c                  |    2 +-
 sound/soc/tegra/tegra_sgtl5000.c                |    2 +-
 sound/soc/tegra/tegra_wm8753.c                  |    2 +-
 sound/soc/tegra/tegra_wm8903.c                  |    2 +-
 sound/soc/tegra/trimslice.c                     |    2 +-
 32 files changed, 46 insertions(+), 46 deletions(-)

^ permalink raw reply	[flat|nested] 60+ messages in thread
* [PATCH] ASoC: rockchip: constify snd_soc_ops structures
@ 2017-08-30  9:58 Jeffy Chen
  2017-08-30 15:22   ` Mark Brown
  0 siblings, 1 reply; 60+ messages in thread
From: Jeffy Chen @ 2017-08-30  9:58 UTC (permalink / raw)
  To: linux-kernel, broonie
  Cc: Jeffy Chen, Jaroslav Kysela, alsa-devel, Heiko Stuebner,
	linux-rockchip, Takashi Iwai, Liam Girdwood, linux-arm-kernel

Add const to dp/dmic snd_soc_ops.

Fixes: 626d84db64d7 (ASoC: rockchip: Add support for DMIC codec)
Fixes: 3313faf1053e (ASoC: rockchip: Add support for DP codec)
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

 sound/soc/rockchip/rk3399_gru_sound.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/rockchip/rk3399_gru_sound.c b/sound/soc/rockchip/rk3399_gru_sound.c
index 5ab25962cabd..0513fe480353 100644
--- a/sound/soc/rockchip/rk3399_gru_sound.c
+++ b/sound/soc/rockchip/rk3399_gru_sound.c
@@ -301,11 +301,11 @@ static const struct snd_soc_ops rockchip_sound_da7219_ops = {
 	.hw_params = rockchip_sound_da7219_hw_params,
 };
 
-static struct snd_soc_ops rockchip_sound_cdndp_ops = {
+static const struct snd_soc_ops rockchip_sound_cdndp_ops = {
 	.hw_params = rockchip_sound_cdndp_hw_params,
 };
 
-static struct snd_soc_ops rockchip_sound_dmic_ops = {
+static const struct snd_soc_ops rockchip_sound_dmic_ops = {
 	.hw_params = rockchip_sound_dmic_hw_params,
 };
 
-- 
2.11.0

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

end of thread, other threads:[~2017-08-30 15:22 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-15 14:55 [PATCH 0/7] constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55 ` Julia Lawall
2016-10-15 14:55 ` Julia Lawall
2016-10-15 14:55 ` [PATCH 1/7] ASoC: intel: broadwell: " Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-17  2:22   ` [alsa-devel] " Keyon Jie
2016-10-17  2:22     ` Keyon Jie
2016-10-24 18:01   ` Applied "ASoC: intel: broadwell: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-15 14:55 ` [PATCH 2/7] ASoC: atmel_wm8904: constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-18  8:13   ` Nicolas Ferre
2016-10-18  8:13     ` Nicolas Ferre
2016-10-18  8:13     ` Nicolas Ferre
2016-10-24 18:01   ` Applied "ASoC: atmel_wm8904: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-15 14:55 ` [PATCH 3/7] ASoC: rockchip: constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-24 18:01   ` Applied "ASoC: rockchip: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-15 14:55 ` [PATCH 4/7] ASoC: qcom: storm: constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-24 18:01   ` Applied "ASoC: qcom: storm: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-15 14:55 ` [PATCH 5/7] ASoC: constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-24 17:34   ` Mark Brown
2016-10-24 17:34     ` Mark Brown
2016-10-24 19:48     ` Julia Lawall
2016-10-24 19:48       ` Julia Lawall
2016-10-25  5:55     ` Julia Lawall
2016-10-25  5:55       ` Julia Lawall
2016-10-25  8:04       ` Joe Perches
2016-10-25  8:04         ` Joe Perches
2016-10-25  8:39         ` Julia Lawall
2016-10-25  8:39           ` Julia Lawall
2016-10-25 14:08       ` Mark Brown
2016-10-25 14:08         ` Mark Brown
2016-10-15 14:55 ` [PATCH 6/7] " Julia Lawall
2016-10-15 14:55   ` Julia Lawall
2016-10-24 18:01   ` Applied "ASoC: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-24 18:01     ` Mark Brown
2016-10-15 14:55 ` [PATCH 7/7] ASoC: tegra: constify snd_soc_ops structures Julia Lawall
2016-10-15 14:55   ` Julia Lawall
     [not found]   ` <1476543351-17858-8-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2016-10-24 18:01     ` Applied "ASoC: tegra: constify snd_soc_ops structures" to the asoc tree Mark Brown
2016-10-24 18:01       ` Mark Brown
2016-10-24 18:01       ` Mark Brown
2016-10-24 18:01       ` Mark Brown
2017-08-30  9:58 [PATCH] ASoC: rockchip: constify snd_soc_ops structures Jeffy Chen
2017-08-30 15:22 ` Applied "ASoC: rockchip: constify snd_soc_ops structures" to the asoc tree Mark Brown
2017-08-30 15:22   ` Mark Brown
2017-08-30 15:22   ` Mark Brown
2017-08-30 15:22   ` Mark Brown

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.