diff options
-rw-r--r-- | sound/soc/codecs/wm8962.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index 3924ee243745..6ff1ff83b4dd 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c | |||
@@ -1479,7 +1479,9 @@ static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0); | |||
1479 | 1479 | ||
1480 | static int wm8962_dsp2_write_config(struct snd_soc_codec *codec) | 1480 | static int wm8962_dsp2_write_config(struct snd_soc_codec *codec) |
1481 | { | 1481 | { |
1482 | return regcache_sync_region(codec->control_data, | 1482 | struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec); |
1483 | |||
1484 | return regcache_sync_region(wm8962->regmap, | ||
1483 | WM8962_HDBASS_AI_1, WM8962_MAX_REGISTER); | 1485 | WM8962_HDBASS_AI_1, WM8962_MAX_REGISTER); |
1484 | } | 1486 | } |
1485 | 1487 | ||