diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-20 04:12:00 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-20 05:02:48 -0500 |
commit | 6242eae9bce864467bc4d6a8b67d1846ecaccf23 (patch) | |
tree | 1d593193ed927c9b2d6985ee79dc7f6ea0e01581 /drivers/regulator | |
parent | 984b5a6ba550f41edda86d0b6deba2b5187f5e44 (diff) |
regulator: da9052: Staticize non-exported symbols
da9052_regulator_info and da9053_regulator_info are not used outside
this driver so no need to make the symbol global.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/da9052-regulator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index f2840b522cde..3767364452fd 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c | |||
@@ -461,7 +461,7 @@ static struct regulator_ops da9052_ldo_ops = { | |||
461 | .activate_bit = (abits),\ | 461 | .activate_bit = (abits),\ |
462 | } | 462 | } |
463 | 463 | ||
464 | struct da9052_regulator_info da9052_regulator_info[] = { | 464 | static struct da9052_regulator_info da9052_regulator_info[] = { |
465 | /* Buck1 - 4 */ | 465 | /* Buck1 - 4 */ |
466 | DA9052_DCDC(0, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO), | 466 | DA9052_DCDC(0, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO), |
467 | DA9052_DCDC(1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO), | 467 | DA9052_DCDC(1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO), |
@@ -480,7 +480,7 @@ struct da9052_regulator_info da9052_regulator_info[] = { | |||
480 | DA9052_LDO(13, 50, 1200, 3600, 6, 6, 0), | 480 | DA9052_LDO(13, 50, 1200, 3600, 6, 6, 0), |
481 | }; | 481 | }; |
482 | 482 | ||
483 | struct da9052_regulator_info da9053_regulator_info[] = { | 483 | static struct da9052_regulator_info da9053_regulator_info[] = { |
484 | /* Buck1 - 4 */ | 484 | /* Buck1 - 4 */ |
485 | DA9052_DCDC(0, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO), | 485 | DA9052_DCDC(0, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBCOREGO), |
486 | DA9052_DCDC(1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO), | 486 | DA9052_DCDC(1, 25, 500, 2075, 6, 6, DA9052_SUPPLY_VBPROGO), |