forked from Minki/linux
staging: vc05_services: fix checkpatch.pl errors
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>
This commit is contained in:
parent
afe65e430d
commit
ab3080532e
@ -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]);
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user