Skip to content

Commit

Permalink
staging/android: style fix: alignment to match the open parenthesis
Browse files Browse the repository at this point in the history
Fix checks reported by checkpatch.pl.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Gustavo Padovan authored and Greg Kroah-Hartman committed Apr 30, 2016
1 parent c240a71 commit 92e0621
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/android/sync_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static unsigned int sync_file_poll(struct file *file, poll_table *wait)
}

static long sync_file_ioctl_merge(struct sync_file *sync_file,
unsigned long arg)
unsigned long arg)
{
int fd = get_unused_fd_flags(O_CLOEXEC);
int err;
Expand Down Expand Up @@ -297,7 +297,7 @@ static long sync_file_ioctl_merge(struct sync_file *sync_file,
}

static void sync_fill_fence_info(struct fence *fence,
struct sync_fence_info *info)
struct sync_fence_info *info)
{
strlcpy(info->obj_name, fence->ops->get_timeline_name(fence),
sizeof(info->obj_name));
Expand All @@ -311,7 +311,7 @@ static void sync_fill_fence_info(struct fence *fence,
}

static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
unsigned long arg)
unsigned long arg)
{
struct sync_file_info info;
struct sync_fence_info *fence_info = NULL;
Expand Down Expand Up @@ -370,7 +370,7 @@ static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
}

static long sync_file_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
unsigned long arg)
{
struct sync_file *sync_file = file->private_data;

Expand Down

0 comments on commit 92e0621

Please sign in to comment.