diff options
author | Colin Ian King <colin.king@canonical.com> | 2014-01-10 14:04:24 +0000 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2014-01-21 08:44:17 -0500 |
commit | 2845f4772386fdbfeac20bd04e8c17e0e5d823f4 (patch) | |
tree | 574d9393f57ba0090cd769a3d71e1c55ae210516 /drivers/platform | |
parent | b30bb89f0fb29502f573d01419391a1e2a4cc4f1 (diff) |
sony-laptop: remove unnecessary assigment of len
The assignment of len = len is unnecessary, so remove it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/sony-laptop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index fb233ae7bb0..61fa755b7ef 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c @@ -791,7 +791,7 @@ static int sony_nc_buffer_call(acpi_handle handle, char *name, u64 *value, void *buffer, size_t buflen) { int ret = 0; - size_t len = len; + size_t len; union acpi_object *object = __call_snc_method(handle, name, value); if (!object) |