2014-04-30 09:06:36

by Arnd Bergmann

[permalink] [raw]
Subject: [PATCH] ASoC: cq93vc: fix cq93vc_get_regmap build error

49101a25acd69c "ASoC: cq93vc: Remove the set_cache_io() entirely from
ASoC probe" introduced the cq93vc_get_regmap function that has an
obvious build error referring to the 'codec' variable that is not
declared anywhere"

sound/soc/codecs/cq93vc.c: In function 'cq93vc_get_regmap':
sound/soc/codecs/cq93vc.c:157:34: error: 'codec' undeclared (first use in this function)
struct davinci_vc *davinci_vc = codec->dev->platform_data;
^

This changes the code to compile again, presumably in the way it was
intended. Not tested.

Signed-off-by: Arnd Bergmann <[email protected]>
Cc: Xiubo Li <[email protected]>

diff --git a/sound/soc/codecs/cq93vc.c b/sound/soc/codecs/cq93vc.c
index 5ee48c8..537327c 100644
--- a/sound/soc/codecs/cq93vc.c
+++ b/sound/soc/codecs/cq93vc.c
@@ -154,7 +154,7 @@ static int cq93vc_remove(struct snd_soc_codec *codec)

static struct regmap *cq93vc_get_regmap(struct device *dev)
{
- struct davinci_vc *davinci_vc = codec->dev->platform_data;
+ struct davinci_vc *davinci_vc = dev->platform_data;

return davinci_vc->regmap;
}


2014-04-30 09:21:56

by Xiubo Li

[permalink] [raw]
Subject: RE: [PATCH] ASoC: cq93vc: fix cq93vc_get_regmap build error


> Subject: [PATCH] ASoC: cq93vc: fix cq93vc_get_regmap build error
>
> 49101a25acd69c "ASoC: cq93vc: Remove the set_cache_io() entirely from
> ASoC probe" introduced the cq93vc_get_regmap function that has an
> obvious build error referring to the 'codec' variable that is not
> declared anywhere"
>
> sound/soc/codecs/cq93vc.c: In function 'cq93vc_get_regmap':
> sound/soc/codecs/cq93vc.c:157:34: error: 'codec' undeclared (first use in this
> function)
> struct davinci_vc *davinci_vc = codec->dev->platform_data;
> ^
>
> This changes the code to compile again, presumably in the way it was
> intended. Not tested.
>

Reviewed-by: Xiubo Li <[email protected]>

Thanks,


> Signed-off-by: Arnd Bergmann <[email protected]>
> Cc: Xiubo Li <[email protected]>
>
> diff --git a/sound/soc/codecs/cq93vc.c b/sound/soc/codecs/cq93vc.c
> index 5ee48c8..537327c 100644
> --- a/sound/soc/codecs/cq93vc.c
> +++ b/sound/soc/codecs/cq93vc.c
> @@ -154,7 +154,7 @@ static int cq93vc_remove(struct snd_soc_codec *codec)
>
> static struct regmap *cq93vc_get_regmap(struct device *dev)
> {
> - struct davinci_vc *davinci_vc = codec->dev->platform_data;
> + struct davinci_vc *davinci_vc = dev->platform_data;
>
> return davinci_vc->regmap;
> }

2014-05-01 01:24:33

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] ASoC: cq93vc: fix cq93vc_get_regmap build error

On Wed, Apr 30, 2014 at 11:06:29AM +0200, Arnd Bergmann wrote:
> 49101a25acd69c "ASoC: cq93vc: Remove the set_cache_io() entirely from
> ASoC probe" introduced the cq93vc_get_regmap function that has an
> obvious build error referring to the 'codec' variable that is not
> declared anywhere"

Applied, thanks.


Attachments:
(No filename) (310.00 B)
signature.asc (836.00 B)
Digital signature
Download all attachments