diff options
author | Didik Setiawan <didik.swn@gmail.com> | 2016-05-13 23:28:10 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-15 10:49:01 -0400 |
commit | 6a9aabb107c65ecb6f08b010853f5571d781ba5a (patch) | |
tree | 74310f103fda52ac3b5e5a3eb4cefb7b38ba427d | |
parent | 35538d7822e86cb38015c21bb708a433f8814af0 (diff) |
staging: android: ion: fix 'line over 80 characters'
fix checkpatch.pl warning about 'line over 80 characters'.
Signed-off-by: Didik Setiawan <didik.swn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/android/ion/ion.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c index 7138a5b2bb10..88dd17e8b19a 100644 --- a/drivers/staging/android/ion/ion.c +++ b/drivers/staging/android/ion/ion.c | |||
@@ -545,7 +545,8 @@ struct ion_handle *ion_alloc(struct ion_client *client, size_t len, | |||
545 | } | 545 | } |
546 | EXPORT_SYMBOL(ion_alloc); | 546 | EXPORT_SYMBOL(ion_alloc); |
547 | 547 | ||
548 | static void ion_free_nolock(struct ion_client *client, struct ion_handle *handle) | 548 | static void ion_free_nolock(struct ion_client *client, |
549 | struct ion_handle *handle) | ||
549 | { | 550 | { |
550 | bool valid_handle; | 551 | bool valid_handle; |
551 | 552 | ||
@@ -1306,7 +1307,8 @@ static long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
1306 | struct ion_handle *handle; | 1307 | struct ion_handle *handle; |
1307 | 1308 | ||
1308 | mutex_lock(&client->lock); | 1309 | mutex_lock(&client->lock); |
1309 | handle = ion_handle_get_by_id_nolock(client, data.handle.handle); | 1310 | handle = ion_handle_get_by_id_nolock(client, |
1311 | data.handle.handle); | ||
1310 | if (IS_ERR(handle)) { | 1312 | if (IS_ERR(handle)) { |
1311 | mutex_unlock(&client->lock); | 1313 | mutex_unlock(&client->lock); |
1312 | return PTR_ERR(handle); | 1314 | return PTR_ERR(handle); |