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

Commit 772f95e3 authored by Colin Ian King's avatar Colin Ian King Committed by David Vrabel
Browse files

x86/xen: fix non-ANSI declaration of xen_has_pv_devices()



xen_has_pv_devices() has no parameters, so use the normal void
parameter convention to make it match the prototype in the header file
include/xen/platform_pci.h.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid Vrabel <david.vrabel@citrix.com>
parent 2c6625cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ static int check_platform_magic(void)
	return 0;
}

bool xen_has_pv_devices()
bool xen_has_pv_devices(void)
{
	if (!xen_domain())
		return false;