From: Colin Ian King Date: Tue, 21 Jul 2020 10:02:17 +0000 (+0100) Subject: x86/ioperm: Initialize pointer bitmap with NULL rather than 0 X-Git-Tag: v5.9-rc1~195^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90fc73928fec2f62bbee1476781754c7392a7b61;p=thirdparty%2Fkernel%2Flinux.git x86/ioperm: Initialize pointer bitmap with NULL rather than 0 The pointer bitmap is being initialized with a plain integer 0, fix this by initializing it with a NULL instead. Cleans up sparse warning: arch/x86/xen/enlighten_pv.c:876:27: warning: Using plain integer as NULL pointer Signed-off-by: Colin Ian King Signed-off-by: Ingo Molnar Reviewed-by: Juergen Gross Link: https://lore.kernel.org/r/20200721100217.407975-1-colin.king@canonical.com --- diff --git a/arch/x86/xen/enlighten_pv.c b/arch/x86/xen/enlighten_pv.c index c46b9f2e732ff..2aab43a13a8c3 100644 --- a/arch/x86/xen/enlighten_pv.c +++ b/arch/x86/xen/enlighten_pv.c @@ -873,7 +873,7 @@ static void xen_load_sp0(unsigned long sp0) static void xen_invalidate_io_bitmap(void) { struct physdev_set_iobitmap iobitmap = { - .bitmap = 0, + .bitmap = NULL, .nr_ports = 0, };