diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2014-04-04 09:29:58 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-04-14 17:01:24 +0100 |
commit | 5efe144681c183e1ca7b0053ad1113667aa7fde2 (patch) | |
tree | 48606b1d06fcb4d9fd8fe15f8da65d92f5e39c4c | |
parent | 63c7c9e16c8e92cc069854f2babdf82d2d38e4c7 (diff) | |
download | op-kernel-dev-5efe144681c183e1ca7b0053ad1113667aa7fde2.zip op-kernel-dev-5efe144681c183e1ca7b0053ad1113667aa7fde2.tar.gz |
regulator: core: Fix typo in of_regulator.h
Fix a typo from my patch adding of_regulator_put_match in the patch:
regulator: core: Add helper to put of_nodes from matches
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | include/linux/regulator/of_regulator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/of_regulator.h b/include/linux/regulator/of_regulator.h index 0652851..a5abd83 100644 --- a/include/linux/regulator/of_regulator.h +++ b/include/linux/regulator/of_regulator.h @@ -38,7 +38,7 @@ static inline int of_regulator_match(struct device *dev, return 0; } static inline int of_regulator_put_match(struct of_regulator_match *matches, - unsigned int num_matches); + unsigned int num_matches) { return 0; } |