Re: [PATCH] Staging: android: Mark local functions in binder.c as static

2013-09-01 Thread Dan Carpenter
On Sun, Sep 01, 2013 at 10:18:44PM +0200, Bojan Prtvar wrote: > -void binder_stat_br(struct binder_proc *proc, struct binder_thread *thread, > +static void binder_stat_br(struct binder_proc *proc, > + struct binder_thread *thread, > uint32_t cmd) The indenting

[PATCH] Staging: android: Mark local functions in binder.c as static

2013-09-01 Thread Bojan Prtvar
This fixes the following sparse warnings drivers/staging/android/binder.c:1703:5: warning: symbol 'binder_thread_write' was not declared. Should it be static? drivers/staging/android/binder.c:2058:6: warning: symbol 'binder_stat_br' was not declared. Should it be static? Signed-off-by: Bojan Prt