aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorArnaud Pouliquen <arnaud.pouliquen@st.com>2015-07-16 10:43:20 +0200
committerMark Brown <broonie@kernel.org>2015-07-16 09:59:23 +0100
commit601b9d9c7bd04f81a96896c9859cd37bd6a78d51 (patch)
treef7e1cfd77420dc4ef0fe0d3371c89e282491786c /sound
parentASoC: sti-sas: fix platform_no_drv_owner.cocci warnings (diff)
downloadlinux-dev-601b9d9c7bd04f81a96896c9859cd37bd6a78d51.tar.xz
linux-dev-601b9d9c7bd04f81a96896c9859cd37bd6a78d51.zip
ASoC: sti-sas: fix x86 compilation issue.
Fixes for compilation warnings and errors reported by Kbuild test robot for x86_64 and i386. Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/sti-sas.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sound/soc/codecs/sti-sas.c b/sound/soc/codecs/sti-sas.c
index adc2c3472382..160d61a66204 100644
--- a/sound/soc/codecs/sti-sas.c
+++ b/sound/soc/codecs/sti-sas.c
@@ -227,8 +227,8 @@ static int stih416_dac_probe(struct snd_soc_dai *dai)
dac->rst = devm_reset_control_get(codec->dev, "dac_rst");
if (IS_ERR(dac->rst)) {
dev_err(dai->codec->dev,
- "%s: ERROR: DAC reset control not defined (%d)!\n",
- __func__, (int)dac->rst);
+ "%s: ERROR: DAC reset control not defined !\n",
+ __func__);
dac->rst = NULL;
return -EFAULT;
}
@@ -547,6 +547,7 @@ static int sti_sas_driver_probe(struct platform_device *pdev)
{
struct device_node *pnode = pdev->dev.of_node;
struct sti_sas_data *drvdata;
+ const struct of_device_id *of_id;
/* Allocate device structure */
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct sti_sas_data),
@@ -555,12 +556,13 @@ static int sti_sas_driver_probe(struct platform_device *pdev)
return -ENOMEM;
/* Populate data structure depending on compatibility */
- if (!of_match_node(sti_sas_dev_match, pnode)->data) {
+ of_id = of_match_node(sti_sas_dev_match, pnode);
+ if (!of_id->data) {
dev_err(&pdev->dev, "data associated to device is missing");
return -EINVAL;
}
- drvdata->dev_data = of_match_node(sti_sas_dev_match, pnode)->data;
+ drvdata->dev_data = (struct sti_sas_dev_data *)of_id->data;
/* Initialise device structure */
drvdata->dev = &pdev->dev;