diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-05-31 08:21:13 -0400 |
---|---|---|
committer | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-07-04 11:44:02 -0400 |
commit | 4ae6df5e1018796ce260be59b2c603bd0f9faa94 (patch) | |
tree | 0a673e318826a51ce2660ed7e978eaa6e64fc6d6 /drivers | |
parent | 57fe7251f5bfc4332f24479376de48a1e8ca6211 (diff) |
MFD: twl4030-audio: Rename platform data
Allign the platform data names for twl4030 audio submodule:
twl4030_audio_data: for the core MFD driver
twl4030_codec_data: for ASoC codec driver
twl4030_vibra_data: for the input/ForceFeedback driver
To avoid breakage, change all depending drivers, files
to use the new types.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/misc/twl4030-vibra.c | 2 | ||||
-rw-r--r-- | drivers/mfd/twl-core.c | 8 | ||||
-rw-r--r-- | drivers/mfd/twl4030-audio.c | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/drivers/input/misc/twl4030-vibra.c b/drivers/input/misc/twl4030-vibra.c index 7abca85b5a74..3c1a432c14dc 100644 --- a/drivers/input/misc/twl4030-vibra.c +++ b/drivers/input/misc/twl4030-vibra.c | |||
@@ -196,7 +196,7 @@ static SIMPLE_DEV_PM_OPS(twl4030_vibra_pm_ops, | |||
196 | 196 | ||
197 | static int __devinit twl4030_vibra_probe(struct platform_device *pdev) | 197 | static int __devinit twl4030_vibra_probe(struct platform_device *pdev) |
198 | { | 198 | { |
199 | struct twl4030_codec_vibra_data *pdata = pdev->dev.platform_data; | 199 | struct twl4030_vibra_data *pdata = pdev->dev.platform_data; |
200 | struct vibra_info *info; | 200 | struct vibra_info *info; |
201 | int ret; | 201 | int ret; |
202 | 202 | ||
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index b8f2a4e7f6e7..f9d7880fd638 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c | |||
@@ -815,20 +815,20 @@ add_children(struct twl4030_platform_data *pdata, unsigned long features) | |||
815 | return PTR_ERR(child); | 815 | return PTR_ERR(child); |
816 | } | 816 | } |
817 | 817 | ||
818 | if (twl_has_codec() && pdata->codec && twl_class_is_4030()) { | 818 | if (twl_has_codec() && pdata->audio && twl_class_is_4030()) { |
819 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; | 819 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; |
820 | child = add_child(sub_chip_id, "twl4030-audio", | 820 | child = add_child(sub_chip_id, "twl4030-audio", |
821 | pdata->codec, sizeof(*pdata->codec), | 821 | pdata->audio, sizeof(*pdata->audio), |
822 | false, 0, 0); | 822 | false, 0, 0); |
823 | if (IS_ERR(child)) | 823 | if (IS_ERR(child)) |
824 | return PTR_ERR(child); | 824 | return PTR_ERR(child); |
825 | } | 825 | } |
826 | 826 | ||
827 | /* Phoenix codec driver is probed directly atm */ | 827 | /* Phoenix codec driver is probed directly atm */ |
828 | if (twl_has_codec() && pdata->codec && twl_class_is_6030()) { | 828 | if (twl_has_codec() && pdata->audio && twl_class_is_6030()) { |
829 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; | 829 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; |
830 | child = add_child(sub_chip_id, "twl6040-codec", | 830 | child = add_child(sub_chip_id, "twl6040-codec", |
831 | pdata->codec, sizeof(*pdata->codec), | 831 | pdata->audio, sizeof(*pdata->audio), |
832 | false, 0, 0); | 832 | false, 0, 0); |
833 | if (IS_ERR(child)) | 833 | if (IS_ERR(child)) |
834 | return PTR_ERR(child); | 834 | return PTR_ERR(child); |
diff --git a/drivers/mfd/twl4030-audio.c b/drivers/mfd/twl4030-audio.c index 5cdf84146799..ae51ab5d0e5d 100644 --- a/drivers/mfd/twl4030-audio.c +++ b/drivers/mfd/twl4030-audio.c | |||
@@ -159,7 +159,7 @@ EXPORT_SYMBOL_GPL(twl4030_audio_get_mclk); | |||
159 | static int __devinit twl4030_audio_probe(struct platform_device *pdev) | 159 | static int __devinit twl4030_audio_probe(struct platform_device *pdev) |
160 | { | 160 | { |
161 | struct twl4030_audio *audio; | 161 | struct twl4030_audio *audio; |
162 | struct twl4030_codec_data *pdata = pdev->dev.platform_data; | 162 | struct twl4030_audio_data *pdata = pdev->dev.platform_data; |
163 | struct mfd_cell *cell = NULL; | 163 | struct mfd_cell *cell = NULL; |
164 | int ret, childs = 0; | 164 | int ret, childs = 0; |
165 | u8 val; | 165 | u8 val; |
@@ -206,11 +206,11 @@ static int __devinit twl4030_audio_probe(struct platform_device *pdev) | |||
206 | audio->resource[TWL4030_AUDIO_RES_APLL].reg = TWL4030_REG_APLL_CTL; | 206 | audio->resource[TWL4030_AUDIO_RES_APLL].reg = TWL4030_REG_APLL_CTL; |
207 | audio->resource[TWL4030_AUDIO_RES_APLL].mask = TWL4030_APLL_EN; | 207 | audio->resource[TWL4030_AUDIO_RES_APLL].mask = TWL4030_APLL_EN; |
208 | 208 | ||
209 | if (pdata->audio) { | 209 | if (pdata->codec) { |
210 | cell = &audio->cells[childs]; | 210 | cell = &audio->cells[childs]; |
211 | cell->name = "twl4030-codec"; | 211 | cell->name = "twl4030-codec"; |
212 | cell->platform_data = pdata->audio; | 212 | cell->platform_data = pdata->codec; |
213 | cell->pdata_size = sizeof(*pdata->audio); | 213 | cell->pdata_size = sizeof(*pdata->codec); |
214 | childs++; | 214 | childs++; |
215 | } | 215 | } |
216 | if (pdata->vibra) { | 216 | if (pdata->vibra) { |