aboutsummaryrefslogtreecommitdiff
path: root/samples/gpio-pci-idio-16.c
diff options
context:
space:
mode:
authorThanos <thanos.makatos@nutanix.com>2020-12-02 10:47:36 +0000
committerGitHub <noreply@github.com>2020-12-02 10:47:36 +0000
commit806284b29414e11f7fd5274ba608ba66bbedc49f (patch)
tree17f4905b8080dc075b10f2b5af7c163f22dadb00 /samples/gpio-pci-idio-16.c
parenta9cf39b0b32f89a50fda63bdafa2e61023916f3a (diff)
parentee1feabb520694633089f1811e8421f50e24c9dd (diff)
downloadlibvfio-user-806284b29414e11f7fd5274ba608ba66bbedc49f.zip
libvfio-user-806284b29414e11f7fd5274ba608ba66bbedc49f.tar.gz
libvfio-user-806284b29414e11f7fd5274ba608ba66bbedc49f.tar.bz2
Merge pull request #144 from tmakatos/issues/106
introduce device and PCI types
Diffstat (limited to 'samples/gpio-pci-idio-16.c')
-rw-r--r--samples/gpio-pci-idio-16.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/gpio-pci-idio-16.c b/samples/gpio-pci-idio-16.c
index 17dfdaa..be8ecdb 100644
--- a/samples/gpio-pci-idio-16.c
+++ b/samples/gpio-pci-idio-16.c
@@ -99,7 +99,8 @@ main(int argc, char *argv[])
err(EXIT_FAILURE, "failed to register signal handler");
}
- vfu_ctx = vfu_create_ctx(VFU_TRANS_SOCK, argv[optind], 0, NULL);
+ vfu_ctx = vfu_create_ctx(VFU_TRANS_SOCK, argv[optind], 0, NULL,
+ VFU_DEV_TYPE_PCI);
if (vfu_ctx == NULL) {
if (errno == EINTR) {
printf("interrupted\n");
@@ -113,7 +114,8 @@ main(int argc, char *argv[])
err(EXIT_FAILURE, "failed to setup log");
}
- ret = vfu_pci_setup_config_hdr(vfu_ctx, id, ss, cc, false);
+ ret = vfu_pci_setup_config_hdr(vfu_ctx, id, ss, cc,
+ VFU_PCI_TYPE_CONVENTIONAL, 0);
if (ret < 0) {
fprintf(stderr, "failed to setup pci header\n");
goto out;