Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6d7083ee authored by Konrad Rzeszutek Wilk's avatar Konrad Rzeszutek Wilk
Browse files

xen/swiotlb: Fix compile warnings when using plain integer instead of NULL pointer.



arch/x86/xen/pci-swiotlb-xen.c:96:1: warning: Using plain integer as NULL pointer
arch/x86/xen/pci-swiotlb-xen.c:96:1: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent a8752fd9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -63,6 +63,6 @@ void __init pci_xen_swiotlb_init(void)
	}
}
IOMMU_INIT_FINISH(pci_xen_swiotlb_detect,
		  0,
		  NULL,
		  pci_xen_swiotlb_init,
		  0);
		  NULL);