diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-03-16 04:50:30 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-03-18 15:00:24 +0300 |
commit | 9cff03710d403f8872d1225d36a4b69432ae007d (patch) | |
tree | 2885f21e1af82cf77a8e1838199c3a7196aaf621 /drivers/regulator/da9052-regulator.c | |
parent | db7ecb493cab3f27da72c6460991e1de9969f9b8 (diff) | |
download | linux-9cff03710d403f8872d1225d36a4b69432ae007d.tar.xz |
regulator: da9052: Include linux/of.h to fix build warning for of_match_ptr
Remove #ifdef CONFIG_OF guard so linux/of.h will be included when
!CONFIG_OF. This fixes build warnings when !CONFIG_OF.
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Steve Twiss <stwiss.opensource@diasemi.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/da9052-regulator.c')
-rw-r--r-- | drivers/regulator/da9052-regulator.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 98d486372b8c..b90a7ac3f3de 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c @@ -19,10 +19,8 @@ #include <linux/platform_device.h> #include <linux/regulator/driver.h> #include <linux/regulator/machine.h> -#ifdef CONFIG_OF #include <linux/of.h> #include <linux/regulator/of_regulator.h> -#endif #include <linux/mfd/da9052/da9052.h> #include <linux/mfd/da9052/reg.h> |