diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2012-11-22 17:20:31 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2012-11-22 17:20:31 -0500 |
commit | 05bce79e6d24ee6eb2beddf0f6314358404d472f (patch) | |
tree | b7eb9e5e6dc1f3585493b07218681ba76b510182 /drivers | |
parent | 66fd3835ac9a3740a7bf953b439e54dbc326d272 (diff) |
ACPI: drop unnecessary local variable from acpi_system_write_wakeup_device()
The LEN variable is unsigned, therefore checking whether it is less than 0 is
useless. Also drop the LEN variable, since the COUNT parameter can be used
instead.
[rjw: Changed the subject.]
Signed-off-by: Cyril Roelandt <tipecaml@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/proc.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/acpi/proc.c b/drivers/acpi/proc.c index 27adb090bb30..ef98796b3824 100644 --- a/drivers/acpi/proc.c +++ b/drivers/acpi/proc.c | |||
@@ -362,16 +362,13 @@ acpi_system_write_wakeup_device(struct file *file, | |||
362 | struct list_head *node, *next; | 362 | struct list_head *node, *next; |
363 | char strbuf[5]; | 363 | char strbuf[5]; |
364 | char str[5] = ""; | 364 | char str[5] = ""; |
365 | unsigned int len = count; | ||
366 | 365 | ||
367 | if (len > 4) | 366 | if (count > 4) |
368 | len = 4; | 367 | count = 4; |
369 | if (len < 0) | ||
370 | return -EFAULT; | ||
371 | 368 | ||
372 | if (copy_from_user(strbuf, buffer, len)) | 369 | if (copy_from_user(strbuf, buffer, count)) |
373 | return -EFAULT; | 370 | return -EFAULT; |
374 | strbuf[len] = '\0'; | 371 | strbuf[count] = '\0'; |
375 | sscanf(strbuf, "%s", str); | 372 | sscanf(strbuf, "%s", str); |
376 | 373 | ||
377 | mutex_lock(&acpi_device_lock); | 374 | mutex_lock(&acpi_device_lock); |