RE: [PATCH] max17042_battery: fix driver exit function

From: Pallala, Ramakrishna
Date: Tue Apr 10 2012 - 01:20:44 EST


Hi Anton,

> From: Pallala, Ramakrishna
> Sent: Monday, March 26, 2012 3:38 PM
> To: linux-kernel@xxxxxxxxxxxxxxx
> Cc: Anton Vorontsov; Anton Vorontsov; Pallala, Ramakrishna
> Subject: [PATCH] max17042_battery: fix driver exit function
>
> This patch frees the irq and sets the i2c client data to NULL in driver remove function.
>
> Signed-off-by: Ramakrishna Pallala <ramakrishna.pallala@xxxxxxxxx>
> ---
> drivers/power/max17042_battery.c | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/power/max17042_battery.c b/drivers/power/max17042_battery.c
> index abf3400..d4868c5 100644
> --- a/drivers/power/max17042_battery.c
> +++ b/drivers/power/max17042_battery.c
> @@ -721,6 +721,10 @@ static int __devexit max17042_remove(struct i2c_client *client)
> struct max17042_chip *chip = i2c_get_clientdata(client);
>
> power_supply_unregister(&chip->battery);
> + if (client->irq)
> + free_irq(client->irq, chip);
> + i2c_set_clientdata(client, NULL);
> +
> return 0;
> }

I have not received any comments for this patch.
Can I assume that this patch is in your merge queue?

Thanks,
Ram
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/