[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1388023041-25785-1-git-send-email-wenyou.yang@atmel.com>
Date: Thu, 26 Dec 2013 09:57:21 +0800
From: Wenyou Yang <wenyou.yang@...el.com>
To: <broonie@...nel.org>
CC: <lgirdwood@...il.com>, <plagnioj@...osoft.com>,
<nicolas.ferre@...el.com>, <linux-kernel@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>, <wenyou.yang@...el.com>
Subject: [PATCH] regulator: act8865: register all regulators regardless of how many are used
As Mark pointed out, the driver should register all regulators
regardless of how many are used in the system in order to aid diagnostics.
But in the previous patch, only register the regulators that are used.
Signed-off-by: Wenyou Yang <wenyou.yang@...el.com>
---
drivers/regulator/act8865-regulator.c | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/drivers/regulator/act8865-regulator.c b/drivers/regulator/act8865-regulator.c
index db048f2..f853353 100644
--- a/drivers/regulator/act8865-regulator.c
+++ b/drivers/regulator/act8865-regulator.c
@@ -227,8 +227,8 @@ static int act8865_pdata_from_dt(struct device *dev,
return matched;
pdata->regulators = devm_kzalloc(dev,
- sizeof(struct act8865_regulator_data) * matched,
- GFP_KERNEL);
+ sizeof(struct act8865_regulator_data) *
+ ARRAY_SIZE(act8865_matches), GFP_KERNEL);
if (!pdata->regulators) {
dev_err(dev, "%s: failed to allocate act8865 registor\n",
__func__);
@@ -238,10 +238,7 @@ static int act8865_pdata_from_dt(struct device *dev,
pdata->num_regulators = matched;
regulator = pdata->regulators;
- for (i = 0; i < matched; i++) {
- if (!act8865_matches[i].init_data)
- continue;
-
+ for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {
regulator->id = i;
regulator->name = act8865_matches[i].name;
regulator->platform_data = act8865_matches[i].init_data;
@@ -310,7 +307,7 @@ static int act8865_pmic_probe(struct i2c_client *client,
}
/* Finally register devices */
- for (i = 0; i < pdata->num_regulators; i++) {
+ for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {
id = pdata->regulators[i].id;
@@ -339,7 +336,7 @@ static int act8865_pmic_remove(struct i2c_client *client)
struct act8865 *act8865 = i2c_get_clientdata(client);
int i;
- for (i = 0; i < ACT8865_REG_NUM; i++)
+ for (i = 0; i < ARRAY_SIZE(act8865_matches); i++)
regulator_unregister(act8865->rdev[i]);
return 0;
--
1.7.9.5
--
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