From 5110f557483df98791c249ec3de9abb057456f0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pali=20Roh=C3=A1r?= Date: Sat, 5 Nov 2022 11:54:40 +0100 Subject: [PATCH] libpci: Add auxiliary data member to struct pci_access for use by the back-end --- lib/pci.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pci.h b/lib/pci.h index 41a162b..14c1301 100644 --- a/lib/pci.h +++ b/lib/pci.h @@ -84,6 +84,7 @@ struct pci_access { int fd_pos; /* proc/sys: current position */ int fd_vpd; /* sys: fd for VPD */ struct pci_dev *cached_dev; /* proc/sys: device the fds are for */ + void *aux; /* Auxiliary data for use by the back-end */ }; /* Initialize PCI access */ -- 2.39.2