From: Adrian Bunk This patch makes three needlessly global functions static. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- 25-akpm/drivers/block/nbd.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/block/nbd.c~drivers-block-nbdc-make-3-functions-static drivers/block/nbd.c --- 25/drivers/block/nbd.c~drivers-block-nbdc-make-3-functions-static 2005-01-25 21:27:11.925167720 -0800 +++ 25-akpm/drivers/block/nbd.c 2005-01-25 21:27:11.928167264 -0800 @@ -315,7 +315,7 @@ static inline int sock_recv_bvec(struct } /* NULL returned = something went wrong, inform userspace */ -struct request *nbd_read_stat(struct nbd_device *lo) +static struct request *nbd_read_stat(struct nbd_device *lo) { int result; struct nbd_reply reply; @@ -377,7 +377,7 @@ harderror: return NULL; } -void nbd_do_it(struct nbd_device *lo) +static void nbd_do_it(struct nbd_device *lo) { struct request *req; @@ -388,7 +388,7 @@ void nbd_do_it(struct nbd_device *lo) return; } -void nbd_clear_que(struct nbd_device *lo) +static void nbd_clear_que(struct nbd_device *lo) { struct request *req; _