diff options
author | Anand K Mistry <amistry@google.com> | 2020-07-02 06:15:22 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-07-02 18:20:57 +0300 |
commit | 6c8b65950b1c75b9e41b5bf314f5d7b81df91272 (patch) | |
tree | fa2a326617ce2e69272a23cd281a4ac412120093 /drivers/regulator | |
parent | d5ff5fb977f0c3d07bdb9f87b490c70481c8666f (diff) | |
download | linux-6c8b65950b1c75b9e41b5bf314f5d7b81df91272.tar.xz |
regulator: da9211: Move buck modes into header file
This will allow device trees to make use of these constants.
Signed-off-by: Anand K Mistry <amistry@google.com>
Link: https://lore.kernel.org/r/20200702131350.1.I96e67ab7b4568287eb939e8a572cbc03e87f1aa0@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/da9211-regulator.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/regulator/da9211-regulator.c b/drivers/regulator/da9211-regulator.c index 2ea4362ffa5c..1f9b75b41346 100644 --- a/drivers/regulator/da9211-regulator.c +++ b/drivers/regulator/da9211-regulator.c @@ -17,6 +17,7 @@ #include <linux/gpio/consumer.h> #include <linux/regulator/of_regulator.h> #include <linux/regulator/da9211.h> +#include <dt-bindings/regulator/dlg,da9211-regulator.h> #include "da9211-regulator.h" /* DEVICE IDs */ @@ -24,10 +25,6 @@ #define DA9213_DEVICE_ID 0x23 #define DA9215_DEVICE_ID 0x24 -#define DA9211_BUCK_MODE_SLEEP 1 -#define DA9211_BUCK_MODE_SYNC 2 -#define DA9211_BUCK_MODE_AUTO 3 - /* DA9211 REGULATOR IDs */ #define DA9211_ID_BUCKA 0 #define DA9211_ID_BUCKB 1 |