mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
staging: android: vsoc: Fix ending '(' warnings in function defintions
Fixes checkpatch.pl warnings about lines ending with parentheses. Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a81403c426
commit
b33fa3c687
@ -148,13 +148,13 @@ static int vsoc_release(struct inode *, struct file *);
|
||||
static ssize_t vsoc_read(struct file *, char __user *, size_t, loff_t *);
|
||||
static ssize_t vsoc_write(struct file *, const char __user *, size_t, loff_t *);
|
||||
static loff_t vsoc_lseek(struct file *filp, loff_t offset, int origin);
|
||||
static int do_create_fd_scoped_permission(
|
||||
struct vsoc_device_region *region_p,
|
||||
struct fd_scoped_permission_node *np,
|
||||
struct fd_scoped_permission_arg __user *arg);
|
||||
static void do_destroy_fd_scoped_permission(
|
||||
struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission *perm);
|
||||
static int
|
||||
do_create_fd_scoped_permission(struct vsoc_device_region *region_p,
|
||||
struct fd_scoped_permission_node *np,
|
||||
struct fd_scoped_permission_arg __user *arg);
|
||||
static void
|
||||
do_destroy_fd_scoped_permission(struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission *perm);
|
||||
static long do_vsoc_describe_region(struct file *,
|
||||
struct vsoc_device_region __user *);
|
||||
static ssize_t vsoc_get_area(struct file *filp, __u32 *perm_off);
|
||||
@ -203,14 +203,14 @@ static inline phys_addr_t shm_off_to_phys_addr(__u32 offset)
|
||||
* Convenience functions to obtain the region from the inode or file.
|
||||
* Dangerous to call before validating the inode/file.
|
||||
*/
|
||||
static inline struct vsoc_device_region *vsoc_region_from_inode(
|
||||
struct inode *inode)
|
||||
static
|
||||
inline struct vsoc_device_region *vsoc_region_from_inode(struct inode *inode)
|
||||
{
|
||||
return &vsoc_dev.regions[iminor(inode)];
|
||||
}
|
||||
|
||||
static inline struct vsoc_device_region *vsoc_region_from_filep(
|
||||
struct file *inode)
|
||||
static
|
||||
inline struct vsoc_device_region *vsoc_region_from_filep(struct file *inode)
|
||||
{
|
||||
return vsoc_region_from_inode(file_inode(inode));
|
||||
}
|
||||
@ -250,10 +250,10 @@ static struct pci_driver vsoc_pci_driver = {
|
||||
.remove = vsoc_remove_device,
|
||||
};
|
||||
|
||||
static int do_create_fd_scoped_permission(
|
||||
struct vsoc_device_region *region_p,
|
||||
struct fd_scoped_permission_node *np,
|
||||
struct fd_scoped_permission_arg __user *arg)
|
||||
static int
|
||||
do_create_fd_scoped_permission(struct vsoc_device_region *region_p,
|
||||
struct fd_scoped_permission_node *np,
|
||||
struct fd_scoped_permission_arg __user *arg)
|
||||
{
|
||||
struct file *managed_filp;
|
||||
s32 managed_fd;
|
||||
@ -344,9 +344,9 @@ static int do_create_fd_scoped_permission(
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void do_destroy_fd_scoped_permission_node(
|
||||
struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission_node *node)
|
||||
static void
|
||||
do_destroy_fd_scoped_permission_node(struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission_node *node)
|
||||
{
|
||||
if (node) {
|
||||
do_destroy_fd_scoped_permission(owner_region_p,
|
||||
@ -358,9 +358,9 @@ static void do_destroy_fd_scoped_permission_node(
|
||||
}
|
||||
}
|
||||
|
||||
static void do_destroy_fd_scoped_permission(
|
||||
struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission *perm)
|
||||
static void
|
||||
do_destroy_fd_scoped_permission(struct vsoc_device_region *owner_region_p,
|
||||
struct fd_scoped_permission *perm)
|
||||
{
|
||||
atomic_t *owner_ptr = NULL;
|
||||
int prev = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user