diff options
author | Ingo Molnar <[email protected]> | 2016-04-29 10:31:28 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2016-04-29 11:06:15 +0200 |
commit | 0ec7ae928a9c19c2b7b8054507d5694a2597065e (patch) | |
tree | cd8845fc685a9994124ee3b7aa60ebc1324f61f8 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | 0cf0223c8370af0fcedb15a408d3c17bb4b9e21d (diff) |
efi: Remove unnecessary (and buggy) .memmap initialization from the Xen EFI driver
So the following commit:
884f4f66ffd6 ("efi: Remove global 'memmap' EFI memory map")
... triggered the following build warning on x86 64-bit allyesconfig:
drivers/xen/efi.c:290:47: warning: missing braces around initializer [-Wmissing-braces]
It's this initialization in drivers/xen/efi.c:
static const struct efi efi_xen __initconst = {
...
.memmap = NULL, /* Not used under Xen. */
...
which was forgotten about, as .memmap now is an embedded struct:
struct efi_memory_map memmap;
We can remove this initialization - it's an EFI core internal data structure plus
it's not used in the Xen driver anyway.
Reviewed-by: Matt Fleming <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions