aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/android/sw_sync.c
diff options
context:
space:
mode:
authorChanglong Xie <changlongx.xie@intel.com>2013-03-05 13:39:39 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-11 09:58:42 -0700
commit451fb7664a590e74122061d3ac773eddb3c73674 (patch)
tree68dfc01b9607319bd7f3390525a3564d98bd10db /drivers/staging/android/sw_sync.c
parentaeac64aac538fde7c11038fc6dd2ef4bec4c39a7 (diff)
staging: sw_sync: sw_sync_timeline_ops can be static
Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Changlong Xie <changlongx.xie@intel.com> Acked-by: Erik Gilling <konkers@android.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android/sw_sync.c')
-rw-r--r--drivers/staging/android/sw_sync.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/android/sw_sync.c b/drivers/staging/android/sw_sync.c
index 68025a5401a..ec7de30ac33 100644
--- a/drivers/staging/android/sw_sync.c
+++ b/drivers/staging/android/sw_sync.c
@@ -100,7 +100,7 @@ static void sw_sync_pt_value_str(struct sync_pt *sync_pt,
snprintf(str, size, "%d", pt->value);
}
-struct sync_timeline_ops sw_sync_timeline_ops = {
+static struct sync_timeline_ops sw_sync_timeline_ops = {
.driver_name = "sw_sync",
.dup = sw_sync_pt_dup,
.has_signaled = sw_sync_pt_has_signaled,
@@ -137,7 +137,7 @@ EXPORT_SYMBOL(sw_sync_timeline_inc);
*/
/* opening sw_sync create a new sync obj */
-int sw_sync_open(struct inode *inode, struct file *file)
+static int sw_sync_open(struct inode *inode, struct file *file)
{
struct sw_sync_timeline *obj;
char task_comm[TASK_COMM_LEN];
@@ -153,14 +153,14 @@ int sw_sync_open(struct inode *inode, struct file *file)
return 0;
}
-int sw_sync_release(struct inode *inode, struct file *file)
+static int sw_sync_release(struct inode *inode, struct file *file)
{
struct sw_sync_timeline *obj = file->private_data;
sync_timeline_destroy(&obj->obj);
return 0;
}
-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;
@@ -206,7 +206,7 @@ err:
return err;
}
-long sw_sync_ioctl_inc(struct sw_sync_timeline *obj, unsigned long arg)
+static long sw_sync_ioctl_inc(struct sw_sync_timeline *obj, unsigned long arg)
{
u32 value;
@@ -218,7 +218,7 @@ long sw_sync_ioctl_inc(struct sw_sync_timeline *obj, unsigned long arg)
return 0;
}
-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;
@@ -247,12 +247,12 @@ static struct miscdevice sw_sync_dev = {
.fops = &sw_sync_fops,
};
-int __init sw_sync_device_init(void)
+static int __init sw_sync_device_init(void)
{
return misc_register(&sw_sync_dev);
}
-void __exit sw_sync_device_remove(void)
+static void __exit sw_sync_device_remove(void)
{
misc_deregister(&sw_sync_dev);
}