staging: android: sw_sync: checkpatch fixes
- no space after cast - allignment should match open parenthesis - remove unnecessary new line Signed-off-by: Purnendu Kapadia <pro8linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1f0f6c9862
commit
50d0a21b61
|
@ -48,11 +48,11 @@ EXPORT_SYMBOL(sw_sync_pt_create);
|
||||||
|
|
||||||
static struct sync_pt *sw_sync_pt_dup(struct sync_pt *sync_pt)
|
static struct sync_pt *sw_sync_pt_dup(struct sync_pt *sync_pt)
|
||||||
{
|
{
|
||||||
struct sw_sync_pt *pt = (struct sw_sync_pt *) sync_pt;
|
struct sw_sync_pt *pt = (struct sw_sync_pt *)sync_pt;
|
||||||
struct sw_sync_timeline *obj =
|
struct sw_sync_timeline *obj =
|
||||||
(struct sw_sync_timeline *)sync_pt_parent(sync_pt);
|
(struct sw_sync_timeline *)sync_pt_parent(sync_pt);
|
||||||
|
|
||||||
return (struct sync_pt *) sw_sync_pt_create(obj, pt->value);
|
return (struct sync_pt *)sw_sync_pt_create(obj, pt->value);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sw_sync_pt_has_signaled(struct sync_pt *sync_pt)
|
static int sw_sync_pt_has_signaled(struct sync_pt *sync_pt)
|
||||||
|
@ -94,7 +94,7 @@ static void sw_sync_timeline_value_str(struct sync_timeline *sync_timeline,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sw_sync_pt_value_str(struct sync_pt *sync_pt,
|
static void sw_sync_pt_value_str(struct sync_pt *sync_pt,
|
||||||
char *str, int size)
|
char *str, int size)
|
||||||
{
|
{
|
||||||
struct sw_sync_pt *pt = (struct sw_sync_pt *)sync_pt;
|
struct sw_sync_pt *pt = (struct sw_sync_pt *)sync_pt;
|
||||||
|
|
||||||
|
@ -111,7 +111,6 @@ static struct sync_timeline_ops sw_sync_timeline_ops = {
|
||||||
.pt_value_str = sw_sync_pt_value_str,
|
.pt_value_str = sw_sync_pt_value_str,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct sw_sync_timeline *sw_sync_timeline_create(const char *name)
|
struct sw_sync_timeline *sw_sync_timeline_create(const char *name)
|
||||||
{
|
{
|
||||||
struct sw_sync_timeline *obj = (struct sw_sync_timeline *)
|
struct sw_sync_timeline *obj = (struct sw_sync_timeline *)
|
||||||
|
|
|
@ -50,7 +50,7 @@ static inline void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct sync_pt *sw_sync_pt_create(struct sw_sync_timeline *obj,
|
static inline struct sync_pt *sw_sync_pt_create(struct sw_sync_timeline *obj,
|
||||||
u32 value)
|
u32 value)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue