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

Commit ee8c94ad authored by Axel Lin's avatar Axel Lin Committed by Wim Van Sebroeck
Browse files

watchdog: da9055: Fix invalid free of devm_ allocated data



It is not required to free devm_ allocated data. Since kref_put
needs a valid release function, da9055_wdt_release_resources()
is not deleted.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 4a490b78
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -102,10 +102,6 @@ static int da9055_wdt_ping(struct watchdog_device *wdt_dev)

static void da9055_wdt_release_resources(struct kref *r)
{
	struct da9055_wdt_data *driver_data =
		container_of(r, struct da9055_wdt_data, kref);

	kfree(driver_data);
}

static void da9055_wdt_ref(struct watchdog_device *wdt_dev)