This patch makes two needlessly global functions static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acked-by: Jens Axboe <[EMAIL PROTECTED]>
--- drivers/block/elevator.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) This patch was already sent on: - 29 Nov 2004 --- linux-2.6.10-rc1-mm3-full/drivers/block/elevator.c.old 2004-11-06 19:55:01.000000000 +0100 +++ linux-2.6.10-rc1-mm3-full/drivers/block/elevator.c 2004-11-06 19:55:34.000000000 +0100 @@ -92,7 +92,7 @@ } EXPORT_SYMBOL(elv_try_last_merge); -struct elevator_type *elevator_find(const char *name) +static struct elevator_type *elevator_find(const char *name) { struct elevator_type *e = NULL; struct list_head *entry; @@ -222,7 +222,7 @@ kfree(e); } -int elevator_global_init(void) +static int elevator_global_init(void) { return 0; } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/