diff options
| -rw-r--r-- | drivers/cpuidle/cpuidle.c | 3 | ||||
| -rw-r--r-- | drivers/cpuidle/sysfs.c | 5 | ||||
| -rw-r--r-- | include/linux/cpuidle.h | 1 |
3 files changed, 3 insertions, 6 deletions
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 080bd2dbde4b..7a73a279e179 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c | |||
| @@ -330,9 +330,6 @@ int cpuidle_enable_device(struct cpuidle_device *dev) | |||
| 330 | if (!dev->registered) | 330 | if (!dev->registered) |
| 331 | return -EINVAL; | 331 | return -EINVAL; |
| 332 | 332 | ||
| 333 | if (!dev->state_count) | ||
| 334 | dev->state_count = drv->state_count; | ||
| 335 | |||
| 336 | ret = cpuidle_add_device_sysfs(dev); | 333 | ret = cpuidle_add_device_sysfs(dev); |
| 337 | if (ret) | 334 | if (ret) |
| 338 | return ret; | 335 | return ret; |
diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c index 97c5903b4606..832a2c3f01ff 100644 --- a/drivers/cpuidle/sysfs.c +++ b/drivers/cpuidle/sysfs.c | |||
| @@ -401,7 +401,7 @@ static int cpuidle_add_state_sysfs(struct cpuidle_device *device) | |||
| 401 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device); | 401 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device); |
| 402 | 402 | ||
| 403 | /* state statistics */ | 403 | /* state statistics */ |
| 404 | for (i = 0; i < device->state_count; i++) { | 404 | for (i = 0; i < drv->state_count; i++) { |
| 405 | kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL); | 405 | kobj = kzalloc(sizeof(struct cpuidle_state_kobj), GFP_KERNEL); |
| 406 | if (!kobj) | 406 | if (!kobj) |
| 407 | goto error_state; | 407 | goto error_state; |
| @@ -433,9 +433,10 @@ error_state: | |||
| 433 | */ | 433 | */ |
| 434 | static void cpuidle_remove_state_sysfs(struct cpuidle_device *device) | 434 | static void cpuidle_remove_state_sysfs(struct cpuidle_device *device) |
| 435 | { | 435 | { |
| 436 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(device); | ||
| 436 | int i; | 437 | int i; |
| 437 | 438 | ||
| 438 | for (i = 0; i < device->state_count; i++) | 439 | for (i = 0; i < drv->state_count; i++) |
| 439 | cpuidle_free_state_kobj(device, i); | 440 | cpuidle_free_state_kobj(device, i); |
| 440 | } | 441 | } |
| 441 | 442 | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index 306178d7309f..9c5e89254796 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -77,7 +77,6 @@ struct cpuidle_device { | |||
| 77 | unsigned int cpu; | 77 | unsigned int cpu; |
| 78 | 78 | ||
| 79 | int last_residency; | 79 | int last_residency; |
| 80 | int state_count; | ||
| 81 | struct cpuidle_state_usage states_usage[CPUIDLE_STATE_MAX]; | 80 | struct cpuidle_state_usage states_usage[CPUIDLE_STATE_MAX]; |
| 82 | struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX]; | 81 | struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX]; |
| 83 | struct cpuidle_driver_kobj *kobj_driver; | 82 | struct cpuidle_driver_kobj *kobj_driver; |
