Commit 93817659 authored by Art Haas's avatar Art Haas Committed by David Woodhouse

[PATCH] C99 initializer for init/initramfs.c

parent 448cfb18
...@@ -299,14 +299,14 @@ static int __init do_symlink(void) ...@@ -299,14 +299,14 @@ static int __init do_symlink(void)
} }
static __initdata int (*actions[])(void) = { static __initdata int (*actions[])(void) = {
[Start] do_start, [Start] = do_start,
[Collect] do_collect, [Collect] = do_collect,
[GotHeader] do_header, [GotHeader] = do_header,
[SkipIt] do_skip, [SkipIt] = do_skip,
[GotName] do_name, [GotName] = do_name,
[CopyFile] do_copy, [CopyFile] = do_copy,
[GotSymlink] do_symlink, [GotSymlink] = do_symlink,
[Reset] do_reset, [Reset] = do_reset,
}; };
static int __init write_buffer(char *buf, unsigned len) static int __init write_buffer(char *buf, unsigned len)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment