From 43262e78b1498113be1375a93a4781eba270dd66 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 20 Jul 2024 14:40:49 +0200 Subject: [PATCH] drivers: power: Remove duplicate newlines Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut --- drivers/power/regulator/lp873x_regulator.c | 1 - drivers/power/regulator/lp87565_regulator.c | 1 - drivers/power/twl6030.c | 1 - 3 files changed, 3 deletions(-) diff --git a/drivers/power/regulator/lp873x_regulator.c b/drivers/power/regulator/lp873x_regulator.c index c59d77118a..271a7e4513 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 d622d95681..2212cb5c65 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 39c05f9b7d..0cf2e50d65 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; -- 2.39.5