diff options
| author | MyungJoo Ham <myungjoo.ham@samsung.com> | 2016-05-16 05:41:57 +0300 | 
|---|---|---|
| committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2016-06-22 07:52:52 +0300 | 
| commit | 67ffdb529b4ec9833f73947dec01eaa78dd53c3d (patch) | |
| tree | 341a322ef9d27c165598fa62113a8eae5bdf3242 /drivers/devfreq/devfreq.c | |
| parent | a5e9b937fa91b3f404618b5281c3239bd1f09c7b (diff) | |
| download | linux-67ffdb529b4ec9833f73947dec01eaa78dd53c3d.tar.xz | |
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/devfreq.c')
| -rw-r--r-- | drivers/devfreq/devfreq.c | 1 | 
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;  	}  | 
