]> mj.ucw.cz Git - pciutils.git/blobdiff - lspci.h
lspci: Add support for CXL GPF Device DVSEC
[pciutils.git] / lspci.h
diff --git a/lspci.h b/lspci.h
index 352177fcce7b327fc9fdb209f46a47f093a8ca6f..62d8e927adb1ac06fa804ba7bfed5b4a92abff6b 100644 (file)
--- a/lspci.h
+++ b/lspci.h
@@ -39,6 +39,7 @@ struct device {
   struct bus *parent_bus;
   struct bridge *bridge;
   /* Cache */
+  int no_config_access;
   unsigned int config_cached, config_bufsize;
   byte *config;                                /* Cached configuration space data */
   byte *present;                       /* Maps which configuration bytes are present */
@@ -55,8 +56,6 @@ u32 get_conf_long(struct device *d, unsigned int pos);
 word get_conf_word(struct device *d, unsigned int pos);
 byte get_conf_byte(struct device *d, unsigned int pos);
 
-void get_subid(struct device *d, word *subvp, word *subdp);
-
 /* Useful macros for decoding of bits and bit fields */
 
 #define FLAG(x,y) ((x & y) ? '+' : '-')