aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/devfreq
diff options
context:
space:
mode:
authorMyungJoo Ham <myungjoo.ham@samsung.com>2016-05-16 11:41:57 +0900
committerMyungJoo Ham <myungjoo.ham@samsung.com>2016-06-22 13:52:52 +0900
commit67ffdb529b4ec9833f73947dec01eaa78dd53c3d (patch)
tree341a322ef9d27c165598fa62113a8eae5bdf3242 /drivers/devfreq
parentPM / devfreq: fix double call put_device (diff)
downloadwireguard-linux-67ffdb529b4ec9833f73947dec01eaa78dd53c3d.tar.xz
wireguard-linux-67ffdb529b4ec9833f73947dec01eaa78dd53c3d.zip
PM / devfreq: remove double put_device
When device_register() returns with error, it has already done put_device() on the input device pointer. Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'drivers/devfreq')
-rw-r--r--drivers/devfreq/devfreq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index 3e1afb4ac77c..0ebd64dfc0a9 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -564,7 +564,6 @@ struct devfreq *devfreq_add_device(struct device *dev,
dev_set_name(&devfreq->dev, "%s", dev_name(dev));
err = device_register(&devfreq->dev);
if (err) {
- put_device(&devfreq->dev);
mutex_unlock(&devfreq->lock);
goto err_out;
}