]> git.karo-electronics.de Git - linux-beck.git/commitdiff
regulator: act8865: Fix build error when !OF
authorAxel Lin <axel.lin@ingics.com>
Mon, 6 Jan 2014 07:42:53 +0000 (15:42 +0800)
committerMark Brown <broonie@linaro.org>
Mon, 6 Jan 2014 12:12:07 +0000 (12:12 +0000)
Fix below build error when !OF:
  CC [M]  drivers/regulator/act8865-regulator.o
drivers/regulator/act8865-regulator.c: In function 'act8865_pmic_probe':
drivers/regulator/act8865-regulator.c:306:18: error: 'act8865_matches' undeclared (first use in this function)
drivers/regulator/act8865-regulator.c:306:18: note: each undeclared identifier is reported only once for each function it appears in
drivers/regulator/act8865-regulator.c:306:18: error: negative width in bit-field '<anonymous>'
make[2]: *** [drivers/regulator/act8865-regulator.o] Error 1
make[1]: *** [drivers/regulator] Error 2
make: *** [drivers] Error 2

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/act8865-regulator.c

index 5e3e1d27032816f7ff1e9a82a0b282041431f10c..084cc0819a52f95a24c1f6c2bed63c1f416d5532 100644 (file)
@@ -303,7 +303,7 @@ static int act8865_pmic_probe(struct i2c_client *client,
        }
 
        /* Finally register devices */
-       for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {
+       for (i = 0; i < ACT8865_REG_NUM; i++) {
 
                id = pdata->regulators[i].id;