diff options
author | Mikhail Bratchikov <m@pepyaka.org> | 2022-05-30 18:21:57 +0300 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2022-10-30 13:32:59 +0100 |
commit | c84f53521902a63b98cb08555c28d576707f0224 (patch) | |
tree | d276fbeb13e74a39bf7184c70aabdbdf0f12a941 /lib | |
parent | 224b552fa67cf841cb913e618ece94ab4cdb3932 (diff) | |
download | pciutils-c84f53521902a63b98cb08555c28d576707f0224.tar.gz |
lib: Fix PCI_L1PM_SUBSTAT_CAP_L1PM_SUPP
Diffstat (limited to 'lib')
-rw-r--r-- | lib/header.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/header.h b/lib/header.h index 165c49c..fb845ed 100644 --- a/lib/header.h +++ b/lib/header.h @@ -1295,7 +1295,7 @@ #define PCI_L1PM_SUBSTAT_CAP_PM_L11 0x2 /* PCI-PM L1.1 Supported */ #define PCI_L1PM_SUBSTAT_CAP_ASPM_L12 0x4 /* ASPM L1.2 Supported */ #define PCI_L1PM_SUBSTAT_CAP_ASPM_L11 0x8 /* ASPM L1.1 Supported */ -#define PCI_L1PM_SUBSTAT_CAP_L1PM_SUPP 0x16 /* L1 PM Substates supported */ +#define PCI_L1PM_SUBSTAT_CAP_L1PM_SUPP 0x10 /* L1 PM Substates supported */ #define PCI_L1PM_SUBSTAT_CTL1 0x8 /* L1 PM Substate Control 1 */ #define PCI_L1PM_SUBSTAT_CTL1_PM_L12 0x1 /* PCI-PM L1.2 Enable */ #define PCI_L1PM_SUBSTAT_CTL1_PM_L11 0x2 /* PCI-PM L1.1 Enable */ |