Remove unused EHCI register definition.

Define reserved EHCI register.

Approved by:    thompsa (mentor)
This commit is contained in:
hselasky 2010-10-14 21:41:08 +00:00
parent 5847c51483
commit 505e0120bf
2 changed files with 1 additions and 3 deletions

View File

@ -93,8 +93,6 @@ __FBSDID("$FreeBSD$");
#define PCI_EHCI_VENDORID_NVIDIA2 0x10DE
#define PCI_EHCI_VENDORID_VIA 0x1106
#define PCI_EHCI_BASE_REG 0x10
static void ehci_pci_takecontroller(device_t self);
static device_probe_t ehci_pci_probe;

View File

@ -55,7 +55,7 @@
/* EHCI capability registers */
#define EHCI_CAPLENGTH 0x00 /* RO Capability register length field */
/* reserved 0x01 */
#define EHCI_RESERVED 0x01 /* Reserved register */
#define EHCI_HCIVERSION 0x02 /* RO Interface version number */
#define EHCI_HCSPARAMS 0x04 /* RO Structural parameters */
#define EHCI_HCS_DEBUGPORT(x) (((x) >> 20) & 0xf)