mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-04 11:24:04 +08:00
cpuidle: Check if device is already registered
Make __cpuidle_register_device() check whether or not the device has been registered already and return -EBUSY immediately if that's the case. [rjw: Changelog] Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
5df0aa7341
commit
c878a52d3c
@ -400,13 +400,16 @@ static int __cpuidle_register_device(struct cpuidle_device *dev)
|
|||||||
*/
|
*/
|
||||||
int cpuidle_register_device(struct cpuidle_device *dev)
|
int cpuidle_register_device(struct cpuidle_device *dev)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret = -EBUSY;
|
||||||
|
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
mutex_lock(&cpuidle_lock);
|
mutex_lock(&cpuidle_lock);
|
||||||
|
|
||||||
|
if (dev->registered)
|
||||||
|
goto out_unlock;
|
||||||
|
|
||||||
ret = __cpuidle_device_init(dev);
|
ret = __cpuidle_device_init(dev);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
|
Loading…
Reference in New Issue
Block a user