Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -102,10 +102,6 @@ static int da9055_wdt_ping(struct watchdog_device *wdt_dev) ...@@ -102,10 +102,6 @@ static int da9055_wdt_ping(struct watchdog_device *wdt_dev)
static void da9055_wdt_release_resources(struct kref *r) 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) static void da9055_wdt_ref(struct watchdog_device *wdt_dev)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment