Add stubs for needed functions.
vfio_pci_hot_reset_info must be forwarded declared on non linux platforms:
In file included from ../hw/vfio/igd-stubs.c:9:
../hw/vfio/pci.h:265:44: error: 'struct vfio_pci_hot_reset_info' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
265 | struct vfio_pci_hot_reset_info **info_p);
|
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Tested-by: Cédric Le Goater <clg@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Link: https://lore.kernel.org/qemu-devel/20260318174733.1717643-4-pierrick.bouvier@linaro.org
Signed-off-by: Cédric Le Goater <clg@redhat.com>
21 lines
344 B
C
21 lines
344 B
C
/*
|
|
* IGD device quirks stubs
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/qmp/qerror.h"
|
|
#include "pci.h"
|
|
#include "pci-quirks.h"
|
|
|
|
void vfio_probe_igd_bar0_quirk(VFIOPCIDevice *vdev, int nr)
|
|
{
|
|
return;
|
|
}
|
|
|
|
bool vfio_probe_igd_config_quirk(VFIOPCIDevice *vdev, Error **errp)
|
|
{
|
|
return true;
|
|
}
|