Skip to content
Snippets Groups Projects
Commit 9eaee2cd authored by Lan,Tianyu's avatar Lan,Tianyu Committed by Rafael J. Wysocki
Browse files

PM / QoS: Fix a free error in the dev_pm_qos_constraints_destroy()


Free a wrong point to struct dev_pm_qos->latency which suppose to
be the point to struct dev_pm_qos. The patch is to fix the issue.

Signed-off-by: default avatarLan Tianyu <tianyu.lan@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent f9652875
Branches
Tags
No related merge requests found
......@@ -253,7 +253,7 @@ void dev_pm_qos_constraints_destroy(struct device *dev)
spin_unlock_irq(&dev->power.lock);
kfree(c->notifiers);
kfree(c);
kfree(qos);
out:
mutex_unlock(&dev_pm_qos_mtx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment