diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-11-06 22:13:53 +0100 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-11-06 13:27:18 -0800 |
commit | b17de3619553d004be3fe3c58bf6a63cbec3303b (patch) | |
tree | b34434d960825fb35d48fc2060489ef1b8a5b7d0 /arch/ia64/hp | |
parent | e3ad42be1ee37ab277ef30555b772e0c803f3b69 (diff) | |
download | kernel_samsung_smdk4412-b17de3619553d004be3fe3c58bf6a63cbec3303b.zip kernel_samsung_smdk4412-b17de3619553d004be3fe3c58bf6a63cbec3303b.tar.gz kernel_samsung_smdk4412-b17de3619553d004be3fe3c58bf6a63cbec3303b.tar.bz2 |
[IA64] fix number of bytes zeroed by sys_fw_init() in arch/ia64/hp/sim/boot/fw-emu.c
The sizeof a pointer is constant, we want the sizeof what is pointed to.
Zero out 'sizeof(*efi_systab)' bytes of the efi_system_table_t pointer
'efi_systab' instead.
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/hp')
-rw-r--r-- | arch/ia64/hp/sim/boot/fw-emu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/hp/sim/boot/fw-emu.c b/arch/ia64/hp/sim/boot/fw-emu.c index 1189d03..bf6d9d8 100644 --- a/arch/ia64/hp/sim/boot/fw-emu.c +++ b/arch/ia64/hp/sim/boot/fw-emu.c @@ -285,7 +285,7 @@ sys_fw_init (const char *args, int arglen) } cmd_line[arglen] = '\0'; - memset(efi_systab, 0, sizeof(efi_systab)); + memset(efi_systab, 0, sizeof(*efi_systab)); efi_systab->hdr.signature = EFI_SYSTEM_TABLE_SIGNATURE; efi_systab->hdr.revision = ((1 << 16) | 00); efi_systab->hdr.headersize = sizeof(efi_systab->hdr); |