diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-07-20 14:40:49 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-22 10:53:05 -0600 |
commit | 43262e78b1498113be1375a93a4781eba270dd66 (patch) | |
tree | 180ed50e94654639816f784b0437fdd99404b3eb | |
parent | 62b66c39c270baf3d1a3bfa1ad88efbcfc92efe0 (diff) |
drivers: power: Remove duplicate newlines
Drop all duplicate newlines. No functional change.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
-rw-r--r-- | drivers/power/regulator/lp873x_regulator.c | 1 | ||||
-rw-r--r-- | drivers/power/regulator/lp87565_regulator.c | 1 | ||||
-rw-r--r-- | drivers/power/twl6030.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/drivers/power/regulator/lp873x_regulator.c b/drivers/power/regulator/lp873x_regulator.c index c59d77118ad..271a7e45139 100644 --- a/drivers/power/regulator/lp873x_regulator.c +++ b/drivers/power/regulator/lp873x_regulator.c @@ -310,7 +310,6 @@ static int buck_get_enable(struct udevice *dev) bool enable = false; int ret; - ret = lp873x_buck_enable(dev, PMIC_OP_GET, &enable); if (ret) return ret; diff --git a/drivers/power/regulator/lp87565_regulator.c b/drivers/power/regulator/lp87565_regulator.c index d622d956815..2212cb5c651 100644 --- a/drivers/power/regulator/lp87565_regulator.c +++ b/drivers/power/regulator/lp87565_regulator.c @@ -167,7 +167,6 @@ static int buck_get_enable(struct udevice *dev) bool enable = false; int ret; - ret = lp87565_buck_enable(dev, PMIC_OP_GET, &enable); if (ret) return ret; diff --git a/drivers/power/twl6030.c b/drivers/power/twl6030.c index 39c05f9b7d3..0cf2e50d65c 100644 --- a/drivers/power/twl6030.c +++ b/drivers/power/twl6030.c @@ -29,7 +29,6 @@ static struct twl6030_data twl6032_info = { .vbat_shift = TWL6032_VBAT_SHIFT, }; - static int twl6030_gpadc_read_channel(u8 channel_no) { u8 lsb = 0; |