summaryrefslogtreecommitdiffstats
path: root/drivers/staging/android/sync_file.c
diff options
context:
space:
mode:
authorGustavo Padovan2016-04-28 15:46:56 +0200
committerGreg Kroah-Hartman2016-04-30 02:37:10 +0200
commit92e06213f11a87effad8bdd4d910958b89eec044 (patch)
tree6be34433f7e6925052b5774e9e4bd9ec6f5dd736 /drivers/staging/android/sync_file.c
parentstaging/android: improve documentation for sync_file (diff)
downloadkernel-qcow2-linux-92e06213f11a87effad8bdd4d910958b89eec044.tar.gz
kernel-qcow2-linux-92e06213f11a87effad8bdd4d910958b89eec044.tar.xz
kernel-qcow2-linux-92e06213f11a87effad8bdd4d910958b89eec044.zip
staging/android: style fix: alignment to match the open parenthesis
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>
Diffstat (limited to 'drivers/staging/android/sync_file.c')
-rw-r--r--drivers/staging/android/sync_file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/android/sync_file.c b/drivers/staging/android/sync_file.c
index d9da3a4ff30c..eabf90dd63b3 100644
--- a/drivers/staging/android/sync_file.c
+++ b/drivers/staging/android/sync_file.c
@@ -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;
@@ -297,7 +297,7 @@ err_put_fd:
}
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));
@@ -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;
@@ -370,7 +370,7 @@ out:
}
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;