]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: android/ion: Split function call
authorBogdan Purcareata <bogdan.purcareata@gmail.com>
Thu, 12 Jan 2017 22:01:53 +0000 (00:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Jan 2017 17:10:26 +0000 (18:10 +0100)
Fix checkpatch error of line exceeding 80 characters.

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion-ioctl.c

index 7e7431d8d49f88b6bfe69c117f871477b47e19e3..9ff815ad1cb16fc60db94ecfed6ded7a92f1efde 100644 (file)
@@ -111,7 +111,8 @@ long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
                struct ion_handle *handle;
 
                mutex_lock(&client->lock);
-               handle = ion_handle_get_by_id_nolock(client, data.handle.handle);
+               handle = ion_handle_get_by_id_nolock(client,
+                                                    data.handle.handle);
                if (IS_ERR(handle)) {
                        mutex_unlock(&client->lock);
                        return PTR_ERR(handle);