Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363267
b: refs/heads/master
c: 6e91f71
h: refs/heads/master
i:
  363265: affae78
  363263: 2f0623b
v: v3
  • Loading branch information
Erik Gilling authored and Greg Kroah-Hartman committed Mar 4, 2013
1 parent cefd28a commit 2d2031b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8edb4ad9118befafe6e0a6b7456939b74a545e42
refs/heads/master: 6e91f719865df97abf483b80b7778dc8a51011c4
5 changes: 4 additions & 1 deletion trunk/drivers/staging/android/sw_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/file.h>
#include <linux/fs.h>
#include <linux/miscdevice.h>
Expand Down Expand Up @@ -43,6 +44,7 @@ struct sync_pt *sw_sync_pt_create(struct sw_sync_timeline *obj, u32 value)

return (struct sync_pt *)pt;
}
EXPORT_SYMBOL(sw_sync_pt_create);

static struct sync_pt *sw_sync_pt_dup(struct sync_pt *sync_pt)
{
Expand Down Expand Up @@ -120,14 +122,15 @@ struct sw_sync_timeline *sw_sync_timeline_create(const char *name)

return obj;
}
EXPORT_SYMBOL(sw_sync_timeline_create);

void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc)
{
obj->value += inc;

sync_timeline_signal(&obj->obj);
}

EXPORT_SYMBOL(sw_sync_timeline_inc);

#ifdef CONFIG_SW_SYNC_USER
/* *WARNING*
Expand Down

0 comments on commit 2d2031b

Please sign in to comment.