diff options
author | Stephen Rothwell | 2020-01-15 12:02:58 +1100 |
---|---|---|
committer | Mark Brown | 2020-01-15 14:10:45 +0000 |
commit | 0468e667a5bead9c1b7ded92861b5a98d8d78745 (patch) | |
tree | 399c60b221bfb3dd3e109f594428d6e7ec853c02 | |
parent | b059b7e0ec3208ff1e17cff6387d75a9fbab4e02 (diff) |
regulator fix for "regulator: core: Add regulator_is_equal() helper"
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Link: https://lore.kernel.org/r/20200115120258.0e535fcb@canb.auug.org.au
Acked-by: Marek Vasut <marex@denx.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | include/linux/regulator/consumer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index 2c89d886595c..6a92fd3105a3 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h @@ -596,7 +596,7 @@ regulator_bulk_set_supply_names(struct regulator_bulk_data *consumers, } static inline bool -regulator_is_equal(struct regulator *reg1, struct regulator *reg2); +regulator_is_equal(struct regulator *reg1, struct regulator *reg2) { return false; } |