Re: [PATCH] drivers: md: Mark the function btree_insert_fn() as static in btree.c

2013-12-14 Thread Josh Triplett
On Sat, Dec 14, 2013 at 06:29:29PM +0530, Rashika Kheria wrote: > This patch marks the function btree_insert_fn() as static in > bcache/btree.c because it is not used outside this file. > > Thus, it also eliminates the following warning in bcache/btree.c: > drivers/md/bcache/btree.c:2220:5: warnin

[PATCH] drivers: md: Mark the function btree_insert_fn() as static in btree.c

2013-12-14 Thread Rashika Kheria
This patch marks the function btree_insert_fn() as static in bcache/btree.c because it is not used outside this file. Thus, it also eliminates the following warning in bcache/btree.c: drivers/md/bcache/btree.c:2220:5: warning: no previous prototype for ‘btree_insert_fn’ [-Wmissing-prototypes] Si