diff options
author | govinda <none@none> | 2005-11-22 09:04:33 -0800 |
---|---|---|
committer | govinda <none@none> | 2005-11-22 09:04:33 -0800 |
commit | 9c75c6bf17b72bb057d7a8879feba77ece65241a (patch) | |
tree | b57f6279f6889ff9a74d728102c7a18ac2739e22 /usr/src/uts/common/sys/ddi_intr_impl.h | |
parent | e487bac029356f425a49182e98c030a816c1fd60 (diff) | |
download | illumos-gate-9c75c6bf17b72bb057d7a8879feba77ece65241a.tar.gz |
6344060 Add MSI software support in bge driver
6344997 Add MSI software support in ohci driver
6344998 Add MSI software support in ehci driver
6348120 Add MSI software support in uhci driver
6349315 Add support for MSI64 transactions
6347105 Update MSI software support in mpt driver
6347109 Fix DDI framework MSI-X issues
6352670 Use proper behavior flag while calling ddi_intr_alloc
6343017 ddi_intr_remove_handler() returns DDI_FAILURE for MSI interrupts
6349316 px_pci should register legacy/fixed interrupt if MSIs are not available
6342807 Fire/Oberon driver panics on detach
6343874 Fire/Oberon Sun4u interrupt vector removal sequence incorrect
6343908 implement sun4v version of px_ib_intr_reset()
6348244 NGDR: panic when addboard resume on Starfire with socal
6348171 panic in ddi framework during esp_attach
6352440 sparc MDB ::interrupts output cleanup
Diffstat (limited to 'usr/src/uts/common/sys/ddi_intr_impl.h')
-rw-r--r-- | usr/src/uts/common/sys/ddi_intr_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/src/uts/common/sys/ddi_intr_impl.h b/usr/src/uts/common/sys/ddi_intr_impl.h index 24a1a86310..1afcca6faa 100644 --- a/usr/src/uts/common/sys/ddi_intr_impl.h +++ b/usr/src/uts/common/sys/ddi_intr_impl.h @@ -155,13 +155,13 @@ typedef struct ddi_intr_msix { /* MSI-X Table related information */ ddi_acc_handle_t msix_tbl_hdl; /* MSI-X table handle */ - caddr_t msix_tbl_addr; /* MSI-X table addr */ - offset_t msix_tbl_offset; /* MSI-X table offset */ + uint32_t *msix_tbl_addr; /* MSI-X table addr */ + uint32_t msix_tbl_offset; /* MSI-X table offset */ /* MSI-X PBA Table related information */ ddi_acc_handle_t msix_pba_hdl; /* MSI-X PBA handle */ - caddr_t msix_pba_addr; /* MSI-X PBA addr */ - offset_t msix_pba_offset; /* MSI-X PBA offset */ + uint32_t *msix_pba_addr; /* MSI-X PBA addr */ + uint32_t msix_pba_offset; /* MSI-X PBA offset */ ddi_device_acc_attr_t msix_dev_attr; /* MSI-X device attr */ } ddi_intr_msix_t; |