diff options
-rw-r--r-- | drivers/base/power/sysfs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/base/power/sysfs.c b/drivers/base/power/sysfs.c index a9f5b8979611..942d6a7c9ae1 100644 --- a/drivers/base/power/sysfs.c +++ b/drivers/base/power/sysfs.c | |||
@@ -116,12 +116,14 @@ static ssize_t control_store(struct device * dev, struct device_attribute *attr, | |||
116 | cp = memchr(buf, '\n', n); | 116 | cp = memchr(buf, '\n', n); |
117 | if (cp) | 117 | if (cp) |
118 | len = cp - buf; | 118 | len = cp - buf; |
119 | device_lock(dev); | ||
119 | if (len == sizeof ctrl_auto - 1 && strncmp(buf, ctrl_auto, len) == 0) | 120 | if (len == sizeof ctrl_auto - 1 && strncmp(buf, ctrl_auto, len) == 0) |
120 | pm_runtime_allow(dev); | 121 | pm_runtime_allow(dev); |
121 | else if (len == sizeof ctrl_on - 1 && strncmp(buf, ctrl_on, len) == 0) | 122 | else if (len == sizeof ctrl_on - 1 && strncmp(buf, ctrl_on, len) == 0) |
122 | pm_runtime_forbid(dev); | 123 | pm_runtime_forbid(dev); |
123 | else | 124 | else |
124 | return -EINVAL; | 125 | n = -EINVAL; |
126 | device_unlock(dev); | ||
125 | return n; | 127 | return n; |
126 | } | 128 | } |
127 | 129 | ||
@@ -205,7 +207,9 @@ static ssize_t autosuspend_delay_ms_store(struct device *dev, | |||
205 | if (strict_strtol(buf, 10, &delay) != 0 || delay != (int) delay) | 207 | if (strict_strtol(buf, 10, &delay) != 0 || delay != (int) delay) |
206 | return -EINVAL; | 208 | return -EINVAL; |
207 | 209 | ||
210 | device_lock(dev); | ||
208 | pm_runtime_set_autosuspend_delay(dev, delay); | 211 | pm_runtime_set_autosuspend_delay(dev, delay); |
212 | device_unlock(dev); | ||
209 | return n; | 213 | return n; |
210 | } | 214 | } |
211 | 215 | ||