'struct max77826_regulator_info' is unused and can be removed.
There is no i2c_get_clientdata().
Resources are managed, so there is no need to keep references unless
explicitly needed.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
--
Compile tested only.
This patch IS SPECULATIVE, review with care!
---
drivers/regulator/max77826-regulator.c | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/drivers/regulator/max77826-regulator.c b/drivers/regulator/max77826-regulator.c
index 376e3110c695..3b12ad361222 100644
--- a/drivers/regulator/max77826-regulator.c
+++ b/drivers/regulator/max77826-regulator.c
@@ -149,13 +149,6 @@ enum max77826_regulators {
.owner = THIS_MODULE, \
}
-
-
-struct max77826_regulator_info {
- struct regmap *regmap;
- const struct regulator_desc *rdesc;
-};
-
static const struct regmap_config max77826_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
@@ -235,30 +228,19 @@ static int max77826_read_device_id(struct regmap *regmap, struct device *dev)
static int max77826_i2c_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
- struct max77826_regulator_info *info;
struct regulator_config config = {};
struct regulator_dev *rdev;
struct regmap *regmap;
int i;
- info = devm_kzalloc(dev, sizeof(struct max77826_regulator_info),
- GFP_KERNEL);
- if (!info)
- return -ENOMEM;
-
- info->rdesc = max77826_regulators_desc;
regmap = devm_regmap_init_i2c(client, &max77826_regmap_config);
if (IS_ERR(regmap)) {
dev_err(dev, "Failed to allocate regmap!\n");
return PTR_ERR(regmap);
}
- info->regmap = regmap;
- i2c_set_clientdata(client, info);
-
config.dev = dev;
config.regmap = regmap;
- config.driver_data = info;
for (i = 0; i < MAX77826_MAX_REGULATORS; i++) {
rdev = devm_regulator_register(dev,
--
2.46.0
This was my first kernel patch, I didn't understand most of the details. I guess I left it because of the i2d_set_clientdata, but nothing is accessing it, so I guess it's safe to drop. Reviewed-by: Iskren Chernev <iskren.chernev@gmail.com> On Sun, Sep 8, 2024 at 2:41 PM Christophe JAILLET <christophe.jaillet@wanadoo.fr> wrote: > > 'struct max77826_regulator_info' is unused and can be removed. > > There is no i2c_get_clientdata(). > Resources are managed, so there is no need to keep references unless > explicitly needed. > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> > -- > Compile tested only. > > This patch IS SPECULATIVE, review with care! > --- > drivers/regulator/max77826-regulator.c | 18 ------------------ > 1 file changed, 18 deletions(-) > > diff --git a/drivers/regulator/max77826-regulator.c b/drivers/regulator/max77826-regulator.c > index 376e3110c695..3b12ad361222 100644 > --- a/drivers/regulator/max77826-regulator.c > +++ b/drivers/regulator/max77826-regulator.c > @@ -149,13 +149,6 @@ enum max77826_regulators { > .owner = THIS_MODULE, \ > } > > - > - > -struct max77826_regulator_info { > - struct regmap *regmap; > - const struct regulator_desc *rdesc; > -}; > - > static const struct regmap_config max77826_regmap_config = { > .reg_bits = 8, > .val_bits = 8, > @@ -235,30 +228,19 @@ static int max77826_read_device_id(struct regmap *regmap, struct device *dev) > static int max77826_i2c_probe(struct i2c_client *client) > { > struct device *dev = &client->dev; > - struct max77826_regulator_info *info; > struct regulator_config config = {}; > struct regulator_dev *rdev; > struct regmap *regmap; > int i; > > - info = devm_kzalloc(dev, sizeof(struct max77826_regulator_info), > - GFP_KERNEL); > - if (!info) > - return -ENOMEM; > - > - info->rdesc = max77826_regulators_desc; > regmap = devm_regmap_init_i2c(client, &max77826_regmap_config); > if (IS_ERR(regmap)) { > dev_err(dev, "Failed to allocate regmap!\n"); > return PTR_ERR(regmap); > } > > - info->regmap = regmap; > - i2c_set_clientdata(client, info); > - > config.dev = dev; > config.regmap = regmap; > - config.driver_data = info; > > for (i = 0; i < MAX77826_MAX_REGULATORS; i++) { > rdev = devm_regulator_register(dev, > -- > 2.46.0 >
© 2016 - 2024 Red Hat, Inc.