diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2020-01-15 12:02:58 +1100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-11 04:35:55 -0800 |
commit | 3556d66be3f1d181d4b26d112e7953159a69752c (patch) | |
tree | 910f01a95da9d9762d41ef869c62dd9b13d165ba /include | |
parent | 0f51165c22e425af2cb243b8a8e891f1ae9e34a8 (diff) | |
download | linux-stable-3556d66be3f1d181d4b26d112e7953159a69752c.tar.gz linux-stable-3556d66be3f1d181d4b26d112e7953159a69752c.tar.bz2 linux-stable-3556d66be3f1d181d4b26d112e7953159a69752c.zip |
regulator fix for "regulator: core: Add regulator_is_equal() helper"
[ Upstream commit 0468e667a5bead9c1b7ded92861b5a98d8d78745 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include')
-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; } |