aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorArt Haas <ahaas@airmail.net>2002-11-18 06:48:42 -0800
committerDavid Woodhouse <dwmw2@infradead.org>2002-11-18 06:48:42 -0800
commit938176595110f08502645af22fc50362aac9e99c (patch)
tree74cb34f3aa8d662214b6e176f4d7bc9625a41e2f /init
parent448cfb187d97284effb90217e004ef99ad8e8c38 (diff)
downloadhistory-938176595110f08502645af22fc50362aac9e99c.tar.gz
[PATCH] C99 initializer for init/initramfs.c
Diffstat (limited to 'init')
-rw-r--r--init/initramfs.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/init/initramfs.c b/init/initramfs.c
index b171e36280298c..cbd1a538d85e3f 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -299,14 +299,14 @@ static int __init do_symlink(void)
}
static __initdata int (*actions[])(void) = {
- [Start] do_start,
- [Collect] do_collect,
- [GotHeader] do_header,
- [SkipIt] do_skip,
- [GotName] do_name,
- [CopyFile] do_copy,
- [GotSymlink] do_symlink,
- [Reset] do_reset,
+ [Start] = do_start,
+ [Collect] = do_collect,
+ [GotHeader] = do_header,
+ [SkipIt] = do_skip,
+ [GotName] = do_name,
+ [CopyFile] = do_copy,
+ [GotSymlink] = do_symlink,
+ [Reset] = do_reset,
};
static int __init write_buffer(char *buf, unsigned len)