diff options
| author | Mark Brown <broonie@linaro.org> | 2014-07-25 14:07:11 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2014-07-29 07:59:48 -0400 |
| commit | 3bc0312e67f0be679039980291f88405f20b0a95 (patch) | |
| tree | 692f637559ebb558b64c00e127dcd618357cab5b /include/linux/regulator | |
| parent | 04eca28cde52cdf9eb91e127cc358ad79a8ec53b (diff) | |
regulator: Add missing statics and inlines for stub functions
So we don't get multiple definitions.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/regulator')
| -rw-r--r-- | include/linux/regulator/consumer.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index 0b1c8d09a6b1..d9e6c20ab9bb 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h | |||
| @@ -460,20 +460,20 @@ static inline int regulator_allow_bypass(struct regulator *regulator, | |||
| 460 | return 0; | 460 | return 0; |
| 461 | } | 461 | } |
| 462 | 462 | ||
| 463 | struct regmap *regulator_get_regmap(struct regulator *regulator) | 463 | static inline struct regmap *regulator_get_regmap(struct regulator *regulator) |
| 464 | { | 464 | { |
| 465 | return ERR_PTR(-EOPNOTSUPP); | 465 | return ERR_PTR(-EOPNOTSUPP); |
| 466 | } | 466 | } |
| 467 | 467 | ||
| 468 | int regulator_get_hardware_vsel_register(struct regulator *regulator, | 468 | static inline int regulator_get_hardware_vsel_register(struct regulator *regulator, |
| 469 | unsigned *vsel_reg, | 469 | unsigned *vsel_reg, |
| 470 | unsigned *vsel_mask) | 470 | unsigned *vsel_mask) |
| 471 | { | 471 | { |
| 472 | return -EOPNOTSUPP; | 472 | return -EOPNOTSUPP; |
| 473 | } | 473 | } |
| 474 | 474 | ||
| 475 | int regulator_list_hardware_vsel(struct regulator *regulator, | 475 | static inline int regulator_list_hardware_vsel(struct regulator *regulator, |
| 476 | unsigned selector) | 476 | unsigned selector) |
| 477 | { | 477 | { |
| 478 | return -EOPNOTSUPP; | 478 | return -EOPNOTSUPP; |
| 479 | } | 479 | } |
