[2.6 patch] drivers/block/elevator.c: make two functions static

From: Adrian Bunk
Date: Mon Nov 29 2004 - 08:09:25 EST


The patch below makes two needlessly global functions static.


diffstat output:
drivers/block/elevator.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- 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 majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/