]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
regulator: lp8755: Fix mask for pchip->mphase
authorAxel Lin <axel.lin@ingics.com>
Wed, 26 Dec 2012 03:56:37 +0000 (11:56 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 8 Jan 2013 11:05:26 +0000 (11:05 +0000)
According to the datasheet, it has 9 multi-phase mode from 0 to 8 and it takes
4 bits in the register.
The mask for pchip->mphase should be 0x0F.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/lp8755.c

index 06a82e2cbf4beb5fc5601e7d0d226b9b9488048d..decb3adbf04a09769d57aee2bae343db504c0947 100644 (file)
@@ -301,7 +301,7 @@ static int lp8755_init_data(struct lp8755_chip *pchip)
        ret = lp8755_read(pchip, 0x3D, &regval);
        if (ret < 0)
                goto out_i2c_error;
-       pchip->mphase = regval & 0x07;
+       pchip->mphase = regval & 0x0F;
 
        /* set default data based on multi-phase config */
        for (icnt = 0; icnt < mphase_buck[pchip->mphase].nreg; icnt++) {