[<prev] [next>] [day] [month] [year] [list]
Message-ID: <B567DBAB974C0544994013492B949F8E381301284F@EXMAIL03.scwf.nsc.com>
Date: Thu, 16 Feb 2012 22:42:16 -0800
From: "Kim, Milo" <Milo.Kim@...com>
To: "Mark Brown" <broonie@...nsource.wolfsonmicro.com>
cc: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: [PATCH 3/3] regulator: remove braces for single statement
* patch base version : linux-3.2.4
Signed-off-by: Milo(Woogyom) Kim <milo.kim@...com>
---
drivers/regulator/core.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 3053f4f..3003a96 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -3092,9 +3092,8 @@ static int __init regulator_init_complete(void)
* goes wrong. */
rdev_info(rdev, "disabling\n");
ret = ops->disable(rdev);
- if (ret != 0) {
+ if (ret != 0)
rdev_err(rdev, "couldn't disable: %d\n", ret);
- }
} else {
/* The intention is that in future we will
* assume that full constraints are provided
--
1.7.4.1
Best Regards,
Milo (Woogyom) Kim
Texas Instruments Incorporated
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists