1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Remove unused EHCI register definition.

Define reserved EHCI register.

Approved by:    thompsa (mentor)
This commit is contained in:
Hans Petter Selasky 2010-10-14 21:41:08 +00:00
parent 53e0bf6e70
commit f7d8cf85e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213871
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)