Re: [PATCH 33/58] kernel/resource.c: Make internal function reallocate_resource static

2012-11-18 Thread Ram Pai
On Sun, Nov 18, 2012 at 09:28:12PM -0800, Josh Triplett wrote: > Nothing outside of kernel/resource.c references reallocate_resource, so > mark it static. This eliminates warnings from GCC > (-Wmissing-prototypes) and Sparse (-Wdecl). > > kernel/resource.c:476:5: warning: no previous prototype fo

[PATCH 33/58] kernel/resource.c: Make internal function reallocate_resource static

2012-11-18 Thread Josh Triplett
Nothing outside of kernel/resource.c references reallocate_resource, so mark it static. This eliminates warnings from GCC (-Wmissing-prototypes) and Sparse (-Wdecl). kernel/resource.c:476:5: warning: no previous prototype for ‘reallocate_resource’ [-Wmissing-prototypes] Signed-off-by: Josh Trip