Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41ff9142 authored by Ernst Martin Witte's avatar Ernst Martin Witte Committed by Mauro Carvalho Chehab
Browse files

[media] ts2020: cancel_delayed_work_sync before device removal / kfree



ts2020_remove  was  calling  kfree(dev)  with  possibly  still  active
schedule_delayed_work(dev->stat_work).  A similar bug in si2157 caused
kernel panics in call_timer_fn e.g. after rmmod cx23885.

Signed-off-by: default avatarErnst Martin Witte <emw-linux-kernel@nocabal.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 4fd57ed6
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -712,6 +712,10 @@ static int ts2020_remove(struct i2c_client *client)

	dev_dbg(&client->dev, "\n");

	/* stop statistics polling */
	if (!dev->dont_poll)
		cancel_delayed_work_sync(&dev->stat_work);

	regmap_exit(dev->regmap);
	kfree(dev);
	return 0;