Input: lm8323 - convert to use devm_* api
Use devm_* api to simplify code, this makes it unnecessary to explicitly release resources. Signed-off-by: Yangtao Li <frank.li@vivo.com> Link: https://lore.kernel.org/r/20230724052901.350240-2-dmitry.torokhov@gmail.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
0410595e23
commit
fe45d12745
|
@ -556,6 +556,7 @@ static int init_pwm(struct lm8323_chip *lm, int id, struct device *dev,
|
|||
const char *name)
|
||||
{
|
||||
struct lm8323_pwm *pwm;
|
||||
int err;
|
||||
|
||||
BUG_ON(id > 3);
|
||||
|
||||
|
@ -575,9 +576,11 @@ static int init_pwm(struct lm8323_chip *lm, int id, struct device *dev,
|
|||
pwm->cdev.name = name;
|
||||
pwm->cdev.brightness_set = lm8323_pwm_set_brightness;
|
||||
pwm->cdev.groups = lm8323_pwm_groups;
|
||||
if (led_classdev_register(dev, &pwm->cdev) < 0) {
|
||||
dev_err(dev, "couldn't register PWM %d\n", id);
|
||||
return -1;
|
||||
|
||||
err = devm_led_classdev_register(dev, &pwm->cdev);
|
||||
if (err) {
|
||||
dev_err(dev, "couldn't register PWM %d: %d\n", id, err);
|
||||
return err;
|
||||
}
|
||||
pwm->enabled = true;
|
||||
}
|
||||
|
@ -585,8 +588,6 @@ static int init_pwm(struct lm8323_chip *lm, int id, struct device *dev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct i2c_driver lm8323_i2c_driver;
|
||||
|
||||
static ssize_t lm8323_show_disable(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
{
|
||||
|
@ -648,12 +649,13 @@ static int lm8323_probe(struct i2c_client *client)
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
lm = kzalloc(sizeof *lm, GFP_KERNEL);
|
||||
idev = input_allocate_device();
|
||||
if (!lm || !idev) {
|
||||
err = -ENOMEM;
|
||||
goto fail1;
|
||||
}
|
||||
lm = devm_kzalloc(&client->dev, sizeof(*lm), GFP_KERNEL);
|
||||
if (!lm)
|
||||
return -ENOMEM;
|
||||
|
||||
idev = devm_input_allocate_device(&client->dev);
|
||||
if (!idev)
|
||||
return -ENOMEM;
|
||||
|
||||
lm->client = client;
|
||||
lm->idev = idev;
|
||||
|
@ -669,8 +671,10 @@ static int lm8323_probe(struct i2c_client *client)
|
|||
|
||||
lm8323_reset(lm);
|
||||
|
||||
/* Nothing's set up to service the IRQ yet, so just spin for max.
|
||||
* 100ms until we can configure. */
|
||||
/*
|
||||
* Nothing's set up to service the IRQ yet, so just spin for max.
|
||||
* 100ms until we can configure.
|
||||
*/
|
||||
tmo = jiffies + msecs_to_jiffies(100);
|
||||
while (lm8323_read(lm, LM8323_CMD_READ_INT, data, 1) == 1) {
|
||||
if (data[0] & INT_NOINIT)
|
||||
|
@ -690,15 +694,14 @@ static int lm8323_probe(struct i2c_client *client)
|
|||
/* If a true probe check the device */
|
||||
if (lm8323_read_id(lm, data) != 0) {
|
||||
dev_err(&client->dev, "device not found\n");
|
||||
err = -ENODEV;
|
||||
goto fail1;
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
for (pwm = 0; pwm < LM8323_NUM_PWMS; pwm++) {
|
||||
err = init_pwm(lm, pwm + 1, &client->dev,
|
||||
pdata->pwm_names[pwm]);
|
||||
if (err < 0)
|
||||
goto fail2;
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
||||
lm->kp_enabled = true;
|
||||
|
@ -722,14 +725,16 @@ static int lm8323_probe(struct i2c_client *client)
|
|||
err = input_register_device(idev);
|
||||
if (err) {
|
||||
dev_dbg(&client->dev, "error registering input device\n");
|
||||
goto fail2;
|
||||
return err;
|
||||
}
|
||||
|
||||
err = request_threaded_irq(client->irq, NULL, lm8323_irq,
|
||||
IRQF_TRIGGER_LOW|IRQF_ONESHOT, "lm8323", lm);
|
||||
err = devm_request_threaded_irq(&client->dev, client->irq,
|
||||
NULL, lm8323_irq,
|
||||
IRQF_TRIGGER_LOW | IRQF_ONESHOT,
|
||||
"lm8323", lm);
|
||||
if (err) {
|
||||
dev_err(&client->dev, "could not get IRQ %d\n", client->irq);
|
||||
goto fail3;
|
||||
return err;
|
||||
}
|
||||
|
||||
i2c_set_clientdata(client, lm);
|
||||
|
@ -738,35 +743,6 @@ static int lm8323_probe(struct i2c_client *client)
|
|||
enable_irq_wake(client->irq);
|
||||
|
||||
return 0;
|
||||
|
||||
fail3:
|
||||
input_unregister_device(idev);
|
||||
idev = NULL;
|
||||
fail2:
|
||||
while (--pwm >= 0)
|
||||
if (lm->pwm[pwm].enabled)
|
||||
led_classdev_unregister(&lm->pwm[pwm].cdev);
|
||||
fail1:
|
||||
input_free_device(idev);
|
||||
kfree(lm);
|
||||
return err;
|
||||
}
|
||||
|
||||
static void lm8323_remove(struct i2c_client *client)
|
||||
{
|
||||
struct lm8323_chip *lm = i2c_get_clientdata(client);
|
||||
int i;
|
||||
|
||||
disable_irq_wake(client->irq);
|
||||
free_irq(client->irq, lm);
|
||||
|
||||
input_unregister_device(lm->idev);
|
||||
|
||||
for (i = 0; i < 3; i++)
|
||||
if (lm->pwm[i].enabled)
|
||||
led_classdev_unregister(&lm->pwm[i].cdev);
|
||||
|
||||
kfree(lm);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -827,7 +803,6 @@ static struct i2c_driver lm8323_i2c_driver = {
|
|||
.dev_groups = lm8323_groups,
|
||||
},
|
||||
.probe = lm8323_probe,
|
||||
.remove = lm8323_remove,
|
||||
.id_table = lm8323_id,
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lm8323_id);
|
||||
|
|
Loading…
Reference in New Issue