diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-11-21 00:45:44 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-11-21 00:45:44 +0100 |
commit | cedded7b50e91344eb469efee354ee8682e33cf3 (patch) | |
tree | 53df30ea277e43a6843ab712639f59cd9c6736ca | |
parent | da54e4bfc29443fb96d89a39b2eeb8e9e6a34de1 (diff) | |
download | plan9front-cedded7b50e91344eb469efee354ee8682e33cf3.tar.xz |
etherm10g: remove duplicated pci capability enum
-rw-r--r-- | sys/src/9/pc/etherm10g.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sys/src/9/pc/etherm10g.c b/sys/src/9/pc/etherm10g.c index 80a084d65..649270113 100644 --- a/sys/src/9/pc/etherm10g.c +++ b/sys/src/9/pc/etherm10g.c @@ -237,21 +237,6 @@ typedef struct Ctlr { static Ctlr *ctlrs; enum { - PciCapPMG = 0x01, /* power management */ - PciCapAGP = 0x02, - PciCapVPD = 0x03, /* vital product data */ - PciCapSID = 0x04, /* slot id */ - PciCapMSI = 0x05, - PciCapCHS = 0x06, /* compact pci hot swap */ - PciCapPCIX = 0x07, - PciCapHTC = 0x08, /* hypertransport irq conf */ - PciCapVND = 0x09, /* vendor specific information */ - PciCapHSW = 0x0C, /* hot swap */ - PciCapPCIe = 0x10, - PciCapMSIX = 0x11, -}; - -enum { PcieAERC = 1, PcieVC, PcieSNC, |