From: Peter Ujfalusi Date: Thu, 14 Nov 2013 09:35:37 +0000 (+0200) Subject: ASoC: davinci-mcasp: Correct am33xx snd_platform_data name X-Git-Tag: next-20131212~47^2^13~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b14899da9ddeb8501db13fd08d0d1a8af61529c5;p=karo-tx-linux.git ASoC: davinci-mcasp: Correct am33xx snd_platform_data name An earlier patch overlooked this when the compatible has been changed from omap2 -> am33x. Rename omap2_mcasp_pdata to am33xx_mcasp_pdata. Signed-off-by: Peter Ujfalusi Signed-off-by: Mark Brown --- diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c index 19c66625af4e..8ec879548488 100644 --- a/sound/soc/davinci/davinci-mcasp.c +++ b/sound/soc/davinci/davinci-mcasp.c @@ -788,7 +788,7 @@ static struct snd_platform_data da830_mcasp_pdata = { .version = MCASP_VERSION_2, }; -static struct snd_platform_data omap2_mcasp_pdata = { +static struct snd_platform_data am33xx_mcasp_pdata = { .tx_dma_offset = 0, .rx_dma_offset = 0, .asp_chan_q = EVENTQ_0, @@ -813,7 +813,7 @@ static const struct of_device_id mcasp_dt_ids[] = { }, { .compatible = "ti,am33xx-mcasp-audio", - .data = &omap2_mcasp_pdata, + .data = &am33xx_mcasp_pdata, }, { .compatible = "ti,dra7-mcasp-audio",