diff options
author | Peter Ujfalusi | 2014-02-03 13:51:51 +0100 |
---|---|---|
committer | Mark Brown | 2014-02-03 19:26:59 +0100 |
commit | d1debafc381cb1fa340b5d0dc79637ad1d523770 (patch) | |
tree | a6bc15ff57a25c9cba628baace360259394d53a2 /include | |
parent | ASoC: davinci-mcasp: Code cleanup in davinci_mcasp_hw_params() (diff) | |
download | kernel-qcow2-linux-d1debafc381cb1fa340b5d0dc79637ad1d523770.tar.gz kernel-qcow2-linux-d1debafc381cb1fa340b5d0dc79637ad1d523770.tar.xz kernel-qcow2-linux-d1debafc381cb1fa340b5d0dc79637ad1d523770.zip |
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')
-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 */ |