summaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
authorrs90106 <none@none>2006-09-14 23:35:01 -0700
committerrs90106 <none@none>2006-09-14 23:35:01 -0700
commite1023cac656b0f2cb79f9d32ed6b3d2d9dc0aa55 (patch)
treed02a380760514edf78b727ad637830799cd9707e /usr/src
parent13683ea2d517595c5ea2c90934fd074d24671646 (diff)
downloadillumos-gate-e1023cac656b0f2cb79f9d32ed6b3d2d9dc0aa55.tar.gz
6348180 pci_check_pciex() is no longer used (removing dead code)
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/uts/common/io/pci_intr_lib.c33
-rw-r--r--usr/src/uts/common/sys/pci_intr_lib.h2
2 files changed, 0 insertions, 35 deletions
diff --git a/usr/src/uts/common/io/pci_intr_lib.c b/usr/src/uts/common/io/pci_intr_lib.c
index 9e285ad197..e5e9b9a421 100644
--- a/usr/src/uts/common/io/pci_intr_lib.c
+++ b/usr/src/uts/common/io/pci_intr_lib.c
@@ -48,39 +48,6 @@ static uchar_t pci_msix_bir_index[8] = {0x10, 0x14, 0x18, 0x1c,
* Library utility functions
*/
-
-/*
- * pci_check_pciex:
- *
- * check whether the device has PCI-E capability
- */
-int
-pci_check_pciex(dev_info_t *dip)
-{
- ddi_acc_handle_t h;
- ushort_t cap_off;
-
- DDI_INTR_NEXDBG((CE_CONT, "pci_check_pciex: dip: 0x%p, driver: %s, "
- "binding: %s, nodename: %s\n", (void *)dip, ddi_driver_name(dip),
- ddi_binding_name(dip), ddi_node_name(dip)));
-
- if (pci_config_setup(dip, &h) != DDI_SUCCESS) {
- DDI_INTR_NEXDBG((CE_CONT, "pci_check_pciex: "
- "pci_config_setup() failed\n"));
- return (DDI_FAILURE);
- }
-
- if ((PCI_CAP_LOCATE(h, PCI_CAP_ID_PCI_E, &cap_off))
- == DDI_SUCCESS) {
- pci_config_teardown(&h);
- return (DDI_SUCCESS);
- }
-
- pci_config_teardown(&h);
- return (DDI_FAILURE);
-}
-
-
/*
* pci_get_msi_ctrl:
*
diff --git a/usr/src/uts/common/sys/pci_intr_lib.h b/usr/src/uts/common/sys/pci_intr_lib.h
index ea3dd79ee6..35d7e8b079 100644
--- a/usr/src/uts/common/sys/pci_intr_lib.h
+++ b/usr/src/uts/common/sys/pci_intr_lib.h
@@ -32,8 +32,6 @@
extern "C" {
#endif
-extern int pci_check_pciex(dev_info_t *dip);
-
extern int pci_msi_get_cap(dev_info_t *rdip, int type, int *flagsp);
extern int pci_msi_configure(dev_info_t *rdip, int type, int count,
int inum, uint64_t addr, uint64_t data);