diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 13:39:08 -0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-02-11 16:54:30 +0000 |
commit | a10807aef5cab5568e70a2d1597305999d93f85d (patch) | |
tree | 59962b27fc7bd126bb908865690a6c029e85a358 /sound/soc | |
parent | 836dc9e3fbbab0c30aa6e664417225f5c1fb1c39 (diff) | |
download | linux-3.10-a10807aef5cab5568e70a2d1597305999d93f85d.tar.gz linux-3.10-a10807aef5cab5568e70a2d1597305999d93f85d.tar.bz2 linux-3.10-a10807aef5cab5568e70a2d1597305999d93f85d.zip |
ASoC: fsl: imx-audmux: Fix sparse warning
Fix the following sparse warning:
sound/soc/fsl/imx-audmux.c:182:3: warning: symbol 'audmux_type' was not declared. Should it be static?
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/fsl/imx-audmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/imx-audmux.c b/sound/soc/fsl/imx-audmux.c index 251f4d981e0..fab912ea7a5 100644 --- a/sound/soc/fsl/imx-audmux.c +++ b/sound/soc/fsl/imx-audmux.c @@ -176,7 +176,7 @@ static inline void audmux_debugfs_remove(void) } #endif -enum imx_audmux_type { +static enum imx_audmux_type { IMX21_AUDMUX, IMX31_AUDMUX, } audmux_type; |