| From 9fa24f866a1faee4925231114d4327e0243d6903 Mon Sep 17 00:00:00 2001 |
| From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| Date: Wed, 15 Jul 2015 07:11:02 +0000 |
| Subject: [PATCH 286/326] ASoC: rsnd: move DVC specific macro into dvc.c |
| |
| rsnd_dvc_nr() is used only from dvc.c |
| |
| Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| Tested-by: Keita Kobayashi <keita.kobayashi.ym@renesas.com> |
| Signed-off-by: Mark Brown <broonie@kernel.org> |
| (cherry picked from commit 4f35fabaa30b116d549d95fe7dae907510c71862) |
| Signed-off-by: Simon Horman <horms+renesas@verge.net.au> |
| --- |
| sound/soc/sh/rcar/dvc.c | 1 + |
| sound/soc/sh/rcar/rsnd.h | 3 --- |
| 2 files changed, 1 insertion(+), 3 deletions(-) |
| |
| diff --git a/sound/soc/sh/rcar/dvc.c b/sound/soc/sh/rcar/dvc.c |
| index dbf0da6ce8a5..8a61aa396306 100644 |
| --- a/sound/soc/sh/rcar/dvc.c |
| +++ b/sound/soc/sh/rcar/dvc.c |
| @@ -24,6 +24,7 @@ struct rsnd_dvc { |
| struct rsnd_kctrl_cfg_s rdown; /* Ramp Rate Down */ |
| }; |
| |
| +#define rsnd_dvc_nr(priv) ((priv)->dvc_nr) |
| #define rsnd_dvc_of_node(priv) \ |
| of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,dvc") |
| |
| diff --git a/sound/soc/sh/rcar/rsnd.h b/sound/soc/sh/rcar/rsnd.h |
| index 46eb4daa1461..8f793f020b08 100644 |
| --- a/sound/soc/sh/rcar/rsnd.h |
| +++ b/sound/soc/sh/rcar/rsnd.h |
| @@ -579,7 +579,4 @@ void rsnd_dvc_remove(struct platform_device *pdev, |
| struct rsnd_priv *priv); |
| struct rsnd_mod *rsnd_dvc_mod_get(struct rsnd_priv *priv, int id); |
| |
| -#define rsnd_dvc_nr(priv) ((priv)->dvc_nr) |
| - |
| - |
| #endif |
| -- |
| 2.6.2 |
| |