diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/power/main.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kernel/power/main.c b/kernel/power/main.c index 6b12a0cf4d9f..7b5db6a8561e 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
| @@ -281,12 +281,30 @@ pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr, | |||
| 281 | } | 281 | } |
| 282 | 282 | ||
| 283 | power_attr(pm_trace); | 283 | power_attr(pm_trace); |
| 284 | |||
| 285 | static ssize_t pm_trace_dev_match_show(struct kobject *kobj, | ||
| 286 | struct kobj_attribute *attr, | ||
| 287 | char *buf) | ||
| 288 | { | ||
| 289 | return show_trace_dev_match(buf, PAGE_SIZE); | ||
| 290 | } | ||
| 291 | |||
| 292 | static ssize_t | ||
| 293 | pm_trace_dev_match_store(struct kobject *kobj, struct kobj_attribute *attr, | ||
| 294 | const char *buf, size_t n) | ||
| 295 | { | ||
| 296 | return -EINVAL; | ||
| 297 | } | ||
| 298 | |||
| 299 | power_attr(pm_trace_dev_match); | ||
| 300 | |||
| 284 | #endif /* CONFIG_PM_TRACE */ | 301 | #endif /* CONFIG_PM_TRACE */ |
| 285 | 302 | ||
| 286 | static struct attribute * g[] = { | 303 | static struct attribute * g[] = { |
| 287 | &state_attr.attr, | 304 | &state_attr.attr, |
| 288 | #ifdef CONFIG_PM_TRACE | 305 | #ifdef CONFIG_PM_TRACE |
| 289 | &pm_trace_attr.attr, | 306 | &pm_trace_attr.attr, |
| 307 | &pm_trace_dev_match_attr.attr, | ||
| 290 | #endif | 308 | #endif |
| 291 | #ifdef CONFIG_PM_SLEEP | 309 | #ifdef CONFIG_PM_SLEEP |
| 292 | &pm_async_attr.attr, | 310 | &pm_async_attr.attr, |
