Messages in this thread |  | | | Date | Mon, 29 Nov 2004 20:36:06 +0100 | | From | Jens Axboe <> | | Subject | Re: [2.6 patch] drivers/block/elevator.c: make two functions static |
| |
On Mon, Nov 29 2004, Adrian Bunk wrote: > 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@stusta.de>
Acked-by: Jens Axboe <axboe@suse.de>
> --- 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; > } > >
-- Jens Axboe
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |