Commit e83c7204 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Sebastian Reichel
Browse files

power: supply: rt9455: Don't pass an error code in remove callback



When ret is not zero there were already one or two error messages emitted
about a problem (because rt9455_register_reset() emits a message in most
cases then). Passing on that error code to the i2c core only results in
another error message. Suppress that by returning zero unconditionally.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent a942f913
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1716,7 +1716,7 @@ static int rt9455_remove(struct i2c_client *client)
	cancel_delayed_work_sync(&info->max_charging_time_work);
	cancel_delayed_work_sync(&info->max_charging_time_work);
	cancel_delayed_work_sync(&info->batt_presence_work);
	cancel_delayed_work_sync(&info->batt_presence_work);


	return ret;
	return 0;
}
}


static const struct i2c_device_id rt9455_i2c_id_table[] = {
static const struct i2c_device_id rt9455_i2c_id_table[] = {