summaryrefslogtreecommitdiff
path: root/sys/pci/if_ste.c
diff options
context:
space:
mode:
authorMatthew N. Dodd <mdodd@FreeBSD.org>2003-04-16 03:16:57 +0000
committerMatthew N. Dodd <mdodd@FreeBSD.org>2003-04-16 03:16:57 +0000
commit533294b956a64b5420f2395a9a3bb047608b67fe (patch)
tree43770c3696a3adbe67787f9d9f8ff9d3bb30a425 /sys/pci/if_ste.c
parentc047e5b1a9d3c13f345a17a28dbb2569ad68d123 (diff)
Notes
Diffstat (limited to 'sys/pci/if_ste.c')
-rw-r--r--sys/pci/if_ste.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys/pci/if_ste.c b/sys/pci/if_ste.c
index d6e505b862f1..67f16f462223 100644
--- a/sys/pci/if_ste.c
+++ b/sys/pci/if_ste.c
@@ -909,7 +909,6 @@ static int
ste_attach(dev)
device_t dev;
{
- u_int32_t command;
struct ste_softc *sc;
struct ifnet *ifp;
int unit, error = 0, rid;
@@ -958,23 +957,6 @@ ste_attach(dev)
* Map control/status registers.
*/
pci_enable_busmaster(dev);
- pci_enable_io(dev, SYS_RES_IOPORT);
- pci_enable_io(dev, SYS_RES_MEMORY);
- command = pci_read_config(dev, PCIR_COMMAND, 4);
-
-#ifdef STE_USEIOSPACE
- if (!(command & PCIM_CMD_PORTEN)) {
- printf("ste%d: failed to enable I/O ports!\n", unit);
- error = ENXIO;
- goto fail;
- }
-#else
- if (!(command & PCIM_CMD_MEMEN)) {
- printf("ste%d: failed to enable memory mapping!\n", unit);
- error = ENXIO;
- goto fail;
- }
-#endif
rid = STE_RID;
sc->ste_res = bus_alloc_resource(dev, STE_RES, &rid,