]> Git Repo - linux.git/commitdiff
ASoC: wm8962: Turn on regcache_cache_only before disabling regulator
authorNicolin Chen <[email protected]>
Thu, 14 Nov 2013 03:59:21 +0000 (11:59 +0800)
committerMark Brown <[email protected]>
Thu, 14 Nov 2013 17:04:21 +0000 (17:04 +0000)
It's safer to turn on regcache_cache_only before disabling regulator since
the driver will turn off the regcache_cache_only after enabling regulator.

If we remain cache_only false, some command like 'amixer cset' would get
failure if being run before wm8962_resume().

Signed-off-by: Nicolin Chen <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Cc: [email protected]
sound/soc/codecs/wm8962.c

index 2bf9ee7c54078d26854540fc2502ab387f42748c..174149352525d119ed2134185f635ad72e1fa702 100644 (file)
@@ -3720,6 +3720,8 @@ static int wm8962_i2c_probe(struct i2c_client *i2c,
        if (ret < 0)
                goto err_enable;
 
+       regcache_cache_only(wm8962->regmap, true);
+
        /* The drivers should power up as needed */
        regulator_bulk_disable(ARRAY_SIZE(wm8962->supplies), wm8962->supplies);
 
This page took 0.05744 seconds and 4 git commands to generate.