diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2014-02-03 14:51:51 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-03 18:26:59 +0000 |
commit | d1debafc381cb1fa340b5d0dc79637ad1d523770 (patch) | |
tree | a6bc15ff57a25c9cba628baace360259394d53a2 /include/linux/platform_data/davinci_asp.h | |
parent | a7e46bd9a19c1e0058c7c8c0b4cc3e6cf101e12a (diff) |
ASoC: davinci-mcasp: Rename platform data struct
Rename the struct for the platform data:
snd_platform_data -> davinci_mcasp_pdata
Since we have users under arch/arm/mach-davinci/ for this struct add
temporary define to avoid breakage. The arch code can be updated later to
use the new struct name.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/platform_data/davinci_asp.h')
-rw-r--r-- | include/linux/platform_data/davinci_asp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/platform_data/davinci_asp.h b/include/linux/platform_data/davinci_asp.h index 5245992b0367..85ad68f9206a 100644 --- a/include/linux/platform_data/davinci_asp.h +++ b/include/linux/platform_data/davinci_asp.h @@ -18,7 +18,7 @@ #include <linux/genalloc.h> -struct snd_platform_data { +struct davinci_mcasp_pdata { u32 tx_dma_offset; u32 rx_dma_offset; int asp_chan_q; /* event queue number for ASP channel */ @@ -87,6 +87,8 @@ struct snd_platform_data { int tx_dma_channel; int rx_dma_channel; }; +/* TODO: Fix arch/arm/mach-davinci/ users and remove this define */ +#define snd_platform_data davinci_mcasp_pdata enum { MCASP_VERSION_1 = 0, /* DM646x */ |