aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorTimur Tabi <timur@freescale.com>2007-11-14 12:07:58 +0100
committerMercurial server <hg@alsa0.alsa-project.org>2007-11-20 19:52:37 +0100
commit4df20535ec52fb7eba604eb1ba77148f92ab8edd (patch)
tree85beb2bb9a7282c387ca1d3534f2b377544c8106 /sound/soc
parent[ALSA] portman2x4 - Fix probe error (diff)
downloadlinux-dev-4df20535ec52fb7eba604eb1ba77148f92ab8edd.tar.xz
linux-dev-4df20535ec52fb7eba604eb1ba77148f92ab8edd.zip
[ALSA] fix private data pointer calculation in CS4270 driver
Fix the calculation of the private_data pointer in the CS4270 driver. Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to '')
-rw-r--r--sound/soc/codecs/cs4270.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs4270.c b/sound/soc/codecs/cs4270.c
index 5d601ad6da70..abac62866da8 100644
--- a/sound/soc/codecs/cs4270.c
+++ b/sound/soc/codecs/cs4270.c
@@ -725,7 +725,8 @@ static int cs4270_probe(struct platform_device *pdev)
codec->owner = THIS_MODULE;
codec->dai = &cs4270_dai;
codec->num_dai = 1;
- codec->private_data = codec + ALIGN(sizeof(struct snd_soc_codec), 4);
+ codec->private_data = (void *) codec +
+ ALIGN(sizeof(struct snd_soc_codec), 4);
socdev->codec = codec;