diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-23 18:30:40 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-23 19:24:48 +0100 |
commit | d74bf3fa8e85f8f80738d93396d8aab3871eae1e (patch) | |
tree | 3d85ee40a3bdec80aa1d967cc23f808c68795e4d /sound/soc | |
parent | 60d509fa6a9c4653a86ad830e4c4b30360b23f0e (diff) | |
download | linux-3.10-d74bf3fa8e85f8f80738d93396d8aab3871eae1e.tar.gz linux-3.10-d74bf3fa8e85f8f80738d93396d8aab3871eae1e.tar.bz2 linux-3.10-d74bf3fa8e85f8f80738d93396d8aab3871eae1e.zip |
ASoC: ux500: forward declare msp_i2s_platform_data
We get a lot of build warnings from the msp driver like:
In file included from sound/soc/ux500/ux500_msp_dai.h:21:0,
from sound/soc/ux500/mop500.c:25:
sound/soc/ux500/ux500_msp_i2s.h:546:11: warning: 'struct msp_i2s_platform_data' declared inside parameter list [enabled by default]
struct msp_i2s_platform_data *platform_data);
^
sound/soc/ux500/ux500_msp_i2s.h:546:11: warning: its scope is only this definition or declaration, which is probably not what you want [enabled by default]
The easiest solution is to add a declaration of the struct name.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/ux500/ux500_msp_i2s.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/ux500/ux500_msp_i2s.h b/sound/soc/ux500/ux500_msp_i2s.h index 1311c0df762..6f3e3dccbcb 100644 --- a/sound/soc/ux500/ux500_msp_i2s.h +++ b/sound/soc/ux500/ux500_msp_i2s.h @@ -543,6 +543,7 @@ struct ux500_msp_dma_params { struct stedma40_chan_cfg *dma_cfg; }; +struct msp_i2s_platform_data; int ux500_msp_i2s_init_msp(struct platform_device *pdev, struct ux500_msp **msp_p, struct msp_i2s_platform_data *platform_data); |