diff options
author | Simon Horman <horms@verge.net.au> | 2010-02-02 14:42:02 +1100 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2010-02-02 14:42:02 +1100 |
commit | 563ee341d950f2fae0ba6608d70c19eb647ff943 (patch) | |
tree | 3b77ae07fdef3f457b3a7b00bf562cc2701c4744 /kexec/arch/mips/kexec-mips.c | |
parent | 22b17e2d0c40d870b3cb35f95d1b4b2c7d109216 (diff) |
Use C99 initialisers
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'kexec/arch/mips/kexec-mips.c')
-rw-r--r-- | kexec/arch/mips/kexec-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexec/arch/mips/kexec-mips.c b/kexec/arch/mips/kexec-mips.c index bf6d193..cb75a2d 100644 --- a/kexec/arch/mips/kexec-mips.c +++ b/kexec/arch/mips/kexec-mips.c @@ -127,7 +127,7 @@ const struct arch_map_entry arches[] = { * use KEXEC_ARCH_DEFAULT instead of KEXEC_ARCH_MIPS here. */ { "mips", KEXEC_ARCH_DEFAULT }, - { 0 }, + { NULL, 0 }, }; int arch_compat_trampoline(struct kexec_info *UNUSED(info)) |