diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2002-03-17 04:10:38 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2002-03-17 04:10:38 +0000 |
| commit | eabfc7877d26c4a8aa45620ff881190c058f88bf (patch) | |
| tree | b21efad5f4c6ffe2503dadd88de8e75995e4408f /sys/dev/cy | |
| parent | 2f6c16e1e89de3523e1b5f09e53832746d5cf6df (diff) | |
Notes
Diffstat (limited to 'sys/dev/cy')
| -rw-r--r-- | sys/dev/cy/cy_pci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index ca128af56738..a806731a460a 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -55,6 +55,7 @@ #define CY_PLX_9060_ICS 0x68 #define CY_PLX_9050_ICS_IENABLE 0x040 #define CY_PLX_9050_ICS_LOCAL_IENABLE 0x001 +#define CY_PLX_9050_ICS_LOCAL_IPOLARITY 0x002 #define CY_PLX_9060_ICS_IENABLE 0x100 #define CY_PLX_9060_ICS_LOCAL_IENABLE 0x800 @@ -177,9 +178,9 @@ cy_pci_attach(dev) plx_ver = *((u_char *)vaddr + PLX_VER) & 0x0f; switch (plx_ver) { case PLX_9050: - outw(ioport + CY_PLX_9050_ICS, - inw(ioport + CY_PLX_9050_ICS) | CY_PLX_9050_ICS_IENABLE | - CY_PLX_9050_ICS_LOCAL_IENABLE); + outw(ioport + CY_PLX_9050_ICS, + CY_PLX_9050_ICS_IENABLE | CY_PLX_9050_ICS_LOCAL_IENABLE | + CY_PLX_9050_ICS_LOCAL_IPOLARITY); break; case PLX_9060: case PLX_9080: |
