diff options
author | Casper H.S. Dik <Casper.Dik@Sun.COM> | 2009-04-04 11:54:12 +0200 |
---|---|---|
committer | Casper H.S. Dik <Casper.Dik@Sun.COM> | 2009-04-04 11:54:12 +0200 |
commit | fb66942fa6213bb169b433e06b0ed5dcced34b0d (patch) | |
tree | 9f59586bbfeac79c57238fcb8a598e2499acbf6d /usr/src/uts/common/sys/pci.h | |
parent | cef70d2c52b5ed31a487790e4584f648812210a9 (diff) | |
download | illumos-joyent-fb66942fa6213bb169b433e06b0ed5dcced34b0d.tar.gz |
6482159 kernel hangs in pcic_attach at boot time on Fujitsu FMV6800MG laptop
Contributed by Masa Murayama <khf04453@nifty.ne.jp>
Diffstat (limited to 'usr/src/uts/common/sys/pci.h')
-rw-r--r-- | usr/src/uts/common/sys/pci.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/uts/common/sys/pci.h b/usr/src/uts/common/sys/pci.h index cab6441560..a1ed236abf 100644 --- a/usr/src/uts/common/sys/pci.h +++ b/usr/src/uts/common/sys/pci.h @@ -19,15 +19,13 @@ * CDDL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _SYS_PCI_H #define _SYS_PCI_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif @@ -113,7 +111,8 @@ extern "C" { * Header type 2 (Cardbus) offsets */ #define PCI_CBUS_SOCK_REG 0x10 /* Cardbus socket regs, 4 bytes */ -#define PCI_CBUS_RESERVED1 0x14 /* Reserved, 2 bytes */ +#define PCI_CBUS_CAP_PTR 0x14 /* Capability ptr, 1 byte */ +#define PCI_CBUS_RESERVED1 0x15 /* Reserved, 1 byte */ #define PCI_CBUS_SEC_STATUS 0x16 /* Secondary status, 2 bytes */ #define PCI_CBUS_PCI_BUS_NO 0x18 /* PCI bus number, 1 byte */ #define PCI_CBUS_CBUS_NO 0x19 /* Cardbus bus number, 1 byte */ |