diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-25 19:46:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 12:00:12 -0700 |
commit | f56f6d30c75984d0aba2656eaeb35f3806395191 (patch) | |
tree | e33a35337b04f0e7bd8cd58593f49369818084ea /init/do_mounts.c | |
parent | 9580d85f9cdb076c4bfb467bc6c0d3c5e499957a (diff) | |
download | op-kernel-dev-f56f6d30c75984d0aba2656eaeb35f3806395191.zip op-kernel-dev-f56f6d30c75984d0aba2656eaeb35f3806395191.tar.gz |
make init/do_mounts.c:root_device_name static
This patch makes the needlessly global root_device_name static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init/do_mounts.c')
-rw-r--r-- | init/do_mounts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/do_mounts.c b/init/do_mounts.c index f769fac..3715feb 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c @@ -23,7 +23,7 @@ int __initdata rd_doload; /* 1 = load RAM disk, 0 = don't load */ int root_mountflags = MS_RDONLY | MS_SILENT; -char * __initdata root_device_name; +static char * __initdata root_device_name; static char __initdata saved_root_name[64]; static int __initdata root_wait; |