1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

The values for OHCI_HALTED and OHCI_TOGGLECARRY were reversed.

This commit is contained in:
Nick Hibma 2000-01-28 00:03:45 +00:00
parent a4ee552aa4
commit fd43044e52
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56705

View File

@ -164,8 +164,8 @@ typedef struct {
#define OHCI_ED_MAXPMASK (0x7ff << 16)
ohci_physaddr_t ed_tailp;
ohci_physaddr_t ed_headp;
#define OHCI_HALTED 0x00000002
#define OHCI_TOGGLECARRY 0x00000001
#define OHCI_HALTED 0x00000001
#define OHCI_TOGGLECARRY 0x00000002
#define OHCI_HEADMASK 0xfffffffc
ohci_physaddr_t ed_nexted;
} ohci_ed_t;