Skip to content

Commit

Permalink
regulator: Add missing statics and inlines for stub functions
Browse files Browse the repository at this point in the history
So we don't get multiple definitions.

Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Mark Brown committed Jul 29, 2014
1 parent 04eca28 commit 3bc0312
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/linux/regulator/consumer.h
Original file line number Diff line number Diff line change
Expand Up @@ -460,20 +460,20 @@ static inline int regulator_allow_bypass(struct regulator *regulator,
return 0;
}

struct regmap *regulator_get_regmap(struct regulator *regulator)
static inline struct regmap *regulator_get_regmap(struct regulator *regulator)
{
return ERR_PTR(-EOPNOTSUPP);
}

int regulator_get_hardware_vsel_register(struct regulator *regulator,
unsigned *vsel_reg,
unsigned *vsel_mask)
static inline int regulator_get_hardware_vsel_register(struct regulator *regulator,
unsigned *vsel_reg,
unsigned *vsel_mask)
{
return -EOPNOTSUPP;
}

int regulator_list_hardware_vsel(struct regulator *regulator,
unsigned selector)
static inline int regulator_list_hardware_vsel(struct regulator *regulator,
unsigned selector)
{
return -EOPNOTSUPP;
}
Expand Down

0 comments on commit 3bc0312

Please sign in to comment.