OSDN Git Service

staging: vc05_services: fix checkpatch.pl errors
authorSidong Yang <realwakka@gmail.com>
Mon, 25 Dec 2017 16:37:45 +0000 (16:37 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Jan 2018 15:41:37 +0000 (16:41 +0100)
Fix some errors for wrong brace position reported by checkpatch.

Signed-off-by: Sidong Yang <realwakka@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c

index f20cf88..b59ef14 100644 (file)
@@ -484,8 +484,7 @@ create_pagelist(char __user *buf, size_t count, unsigned short type)
                                       __func__, actual_pages, num_pages);
 
                        /* This is probably due to the process being killed */
-                       while (actual_pages > 0)
-                       {
+                       while (actual_pages > 0) {
                                actual_pages--;
                                put_page(pages[actual_pages]);
                        }
index 411539f..c2c4400 100644 (file)
@@ -682,8 +682,7 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
                        if (user_service->close_pending &&
                                down_interruptible(&user_service->close_event))
                                status = VCHIQ_RETRY;
-               }
-               else
+               } else
                        ret = -EINVAL;
        } break;
 
@@ -708,8 +707,7 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
                        if (user_service->close_pending &&
                                down_interruptible(&user_service->close_event))
                                status = VCHIQ_RETRY;
-               }
-               else
+               } else
                        ret = -EINVAL;
        } break;
 
@@ -1171,8 +1169,7 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
                        USER_SERVICE_T *user_service =
                                (USER_SERVICE_T *)service->base.userdata;
                        close_delivered(user_service);
-               }
-               else
+               } else
                        ret = -EINVAL;
        } break;
 
@@ -1810,8 +1807,7 @@ vchiq_release(struct inode *inode, struct file *file)
                                instance->completion_remove &
                                (MAX_COMPLETIONS - 1)];
                        service = completion->service_userdata;
-                       if (completion->reason == VCHIQ_SERVICE_CLOSED)
-                       {
+                       if (completion->reason == VCHIQ_SERVICE_CLOSED) {
                                USER_SERVICE_T *user_service =
                                        service->base.userdata;