diff options
-rw-r--r-- | drivers/staging/android/sw_sync.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/android/sw_sync.c b/drivers/staging/android/sw_sync.c index 4928f93bdf3d..765c757b120f 100644 --- a/drivers/staging/android/sw_sync.c +++ b/drivers/staging/android/sw_sync.c @@ -160,7 +160,8 @@ static int sw_sync_release(struct inode *inode, struct file *file) return 0; } -static long sw_sync_ioctl_create_fence(struct sw_sync_timeline *obj, unsigned long arg) +static long sw_sync_ioctl_create_fence(struct sw_sync_timeline *obj, + unsigned long arg) { int fd = get_unused_fd(); int err; @@ -218,7 +219,8 @@ static long sw_sync_ioctl_inc(struct sw_sync_timeline *obj, unsigned long arg) return 0; } -static long sw_sync_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +static long sw_sync_ioctl(struct file *file, unsigned int cmd, + unsigned long arg) { struct sw_sync_timeline *obj = file->private_data; |