summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/an/if_an.c3
-rw-r--r--sys/dev/an/if_an_isa.c2
-rw-r--r--sys/dev/an/if_an_pccard.c2
-rw-r--r--sys/dev/an/if_an_pci.c7
-rw-r--r--sys/dev/an/if_anreg.h37
5 files changed, 12 insertions, 39 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c
index fd9f044..c05b59c 100644
--- a/sys/dev/an/if_an.c
+++ b/sys/dev/an/if_an.c
@@ -349,9 +349,6 @@ an_probe(device_t dev)
* to be able to issue commands and call some of the
* other routines.
*/
- sc->an_bhandle = rman_get_bushandle(sc->port_res);
- sc->an_btag = rman_get_bustag(sc->port_res);
-
ssid.an_len = sizeof(ssid);
ssid.an_type = AN_RID_SSIDLIST;
diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c
index 5c1f0eb..19e5cd0 100644
--- a/sys/dev/an/if_an_isa.c
+++ b/sys/dev/an/if_an_isa.c
@@ -111,8 +111,6 @@ an_attach_isa(device_t dev)
an_alloc_port(dev, sc->port_rid, 1);
an_alloc_irq(dev, sc->irq_rid, 0);
- sc->an_bhandle = rman_get_bushandle(sc->port_res);
- sc->an_btag = rman_get_bustag(sc->port_res);
sc->an_dev = dev;
error = an_attach(sc, flags);
diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c
index cfb20f3..bdd40f3 100644
--- a/sys/dev/an/if_an_pccard.c
+++ b/sys/dev/an/if_an_pccard.c
@@ -141,8 +141,6 @@ an_pccard_attach(device_t dev)
an_alloc_irq(dev, sc->irq_rid, 0);
- sc->an_bhandle = rman_get_bushandle(sc->port_res);
- sc->an_btag = rman_get_bustag(sc->port_res);
sc->an_dev = dev;
error = an_attach(sc, flags);
diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c
index 1efc494..2d0d2b5 100644
--- a/sys/dev/an/if_an_pci.c
+++ b/sys/dev/an/if_an_pci.c
@@ -175,9 +175,6 @@ an_attach_pci(dev)
goto fail;
}
- sc->an_btag = rman_get_bustag(sc->port_res);
- sc->an_bhandle = rman_get_bushandle(sc->port_res);
-
/* Allocate memory for MPI350 */
if (sc->mpi350) {
/* Allocate memory */
@@ -187,8 +184,6 @@ an_attach_pci(dev)
device_printf(dev, "couldn't map memory\n");
goto fail;
}
- sc->an_mem_btag = rman_get_bustag(sc->mem_res);
- sc->an_mem_bhandle = rman_get_bushandle(sc->mem_res);
/* Allocate aux. memory */
sc->mem_aux_rid = PCIR_BAR(2);
@@ -198,8 +193,6 @@ an_attach_pci(dev)
device_printf(dev, "couldn't map aux memory\n");
goto fail;
}
- sc->an_mem_aux_btag = rman_get_bustag(sc->mem_aux_res);
- sc->an_mem_aux_bhandle = rman_get_bushandle(sc->mem_aux_res);
/* Allocate DMA region */
error = bus_dma_tag_create(NULL, /* parent */
diff --git a/sys/dev/an/if_anreg.h b/sys/dev/an/if_anreg.h
index 051a93b..2fe9ac2 100644
--- a/sys/dev/an/if_anreg.h
+++ b/sys/dev/an/if_anreg.h
@@ -45,47 +45,39 @@
/*
* register space access macros
*/
-#define CSR_WRITE_2(sc, reg, val) \
- bus_space_write_2(sc->an_btag, sc->an_bhandle, reg, val)
+#define CSR_WRITE_2(sc, reg, val) bus_write_2(sc->port_res, reg, val)
-#define CSR_READ_2(sc, reg) \
- bus_space_read_2(sc->an_btag, sc->an_bhandle, reg)
+#define CSR_READ_2(sc, reg) bus_read_2(sc->port_res, reg)
-#define CSR_WRITE_1(sc, reg, val) \
- bus_space_write_1(sc->an_btag, sc->an_bhandle, reg, val)
+#define CSR_WRITE_1(sc, reg, val) bus_write_1(sc->port_res, reg, val)
-#define CSR_READ_1(sc, reg) \
- bus_space_read_1(sc->an_btag, sc->an_bhandle, reg)
+#define CSR_READ_1(sc, reg) bus_read_1(sc->port_res, reg)
/*
* memory space access macros
*/
-#define CSR_MEM_WRITE_2(sc, reg, val) \
- bus_space_write_2(sc->an_mem_btag, sc->an_mem_bhandle, reg, val)
+#define CSR_MEM_WRITE_2(sc, reg, val) bus_write_2(sc->mem_res, reg, val)
-#define CSR_MEM_READ_2(sc, reg) \
- bus_space_read_2(sc->an_mem_btag, sc->an_mem_bhandle, reg)
+#define CSR_MEM_READ_2(sc, reg) bus_read_2(sc->mem_res, reg)
-#define CSR_MEM_WRITE_1(sc, reg, val) \
- bus_space_write_1(sc->an_mem_btag, sc->an_mem_bhandle, reg, val)
+#define CSR_MEM_WRITE_1(sc, reg, val) bus_write_1(sc->mem_res, reg, val)
-#define CSR_MEM_READ_1(sc, reg) \
- bus_space_read_1(sc->an_mem_btag, sc->an_mem_bhandle, reg)
+#define CSR_MEM_READ_1(sc, reg) bus_read_1(sc->mem_res, reg)
/*
* aux. memory space access macros
*/
#define CSR_MEM_AUX_WRITE_4(sc, reg, val) \
- bus_space_write_4(sc->an_mem_aux_btag, sc->an_mem_aux_bhandle, reg, val)
+ bus_write_4(sc->mem_aux_res, reg, val)
#define CSR_MEM_AUX_READ_4(sc, reg) \
- bus_space_read_4(sc->an_mem_aux_btag, sc->an_mem_aux_bhandle, reg)
+ bus_read_4(sc->mem_aux_res, reg)
#define CSR_MEM_AUX_WRITE_1(sc, reg, val) \
- bus_space_write_1(sc->an_mem_aux_btag, sc->an_mem_aux_bhandle, reg, val)
+ bus_write_1(sc->mem_aux_res, reg, val)
#define CSR_MEM_AUX_READ_1(sc, reg) \
- bus_space_read_1(sc->an_mem_aux_btag, sc->an_mem_aux_bhandle, reg)
+ bus_read_1(sc->mem_aux_res, reg)
/*
* Size of Aironet I/O space.
@@ -454,11 +446,6 @@ struct an_softc {
void* irq_handle; /* handle for irq handler */
struct resource* irq_res; /* resource for irq */
- bus_space_handle_t an_bhandle_p;
- bus_space_handle_t an_bhandle;
- bus_space_tag_t an_btag;
- bus_space_handle_t an_mem_bhandle;
- bus_space_tag_t an_mem_btag;
bus_space_handle_t an_mem_aux_bhandle;
bus_space_tag_t an_mem_aux_btag;
bus_dma_tag_t an_dtag;
OpenPOWER on IntegriCloud