summaryrefslogtreecommitdiffstats
path: root/sys/dev/pcf/pcfvar.h
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2004-08-11 21:19:31 +0000
committermarius <marius@FreeBSD.org>2004-08-11 21:19:31 +0000
commit4ae1646ed50046da7ff680f91145c7f0a4233c89 (patch)
tree39cfc105dfce653b68422ed250b593311bcfe71d /sys/dev/pcf/pcfvar.h
parent12f47e5a96e5c45ab2226b047ff6cda4c6c88ed7 (diff)
downloadFreeBSD-src-4ae1646ed50046da7ff680f91145c7f0a4233c89.zip
FreeBSD-src-4ae1646ed50046da7ff680f91145c7f0a4233c89.tar.gz
Unbreak after struct resource was hidden. Tested with EBus front-end on
Sun AXe board.
Diffstat (limited to 'sys/dev/pcf/pcfvar.h')
-rw-r--r--sys/dev/pcf/pcfvar.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/sys/dev/pcf/pcfvar.h b/sys/dev/pcf/pcfvar.h
index 258cfb7..ed4d9d8 100644
--- a/sys/dev/pcf/pcfvar.h
+++ b/sys/dev/pcf/pcfvar.h
@@ -66,11 +66,13 @@ struct pcf_softc {
device_t iicbus; /* the corresponding iicbus */
/* Resource handling stuff. */
- void *intr_cookie;
- int rid_ioport;
- int rid_irq;
- struct resource *res_ioport;
- struct resource *res_irq;
+ struct resource *res_ioport;
+ int rid_ioport;
+ bus_space_tag_t bt_ioport;
+ bus_space_handle_t bh_ioport;
+ struct resource *res_irq;
+ int rid_irq;
+ void *intr_cookie;
};
#define DEVTOSOFTC(dev) ((struct pcf_softc *)device_get_softc(dev))
@@ -89,18 +91,16 @@ struct pcf_softc {
static __inline void
pcf_set_S0(struct pcf_softc *sc, int data)
{
- bus_space_write_1(sc->res_ioport->r_bustag,
- sc->res_ioport->r_bushandle,
- 0, data);
+
+ bus_space_write_1(sc->bt_ioport, sc->bh_ioport, 0, data);
pcf_nops();
}
static __inline void
pcf_set_S1(struct pcf_softc *sc, int data)
{
- bus_space_write_1(sc->res_ioport->r_bustag,
- sc->res_ioport->r_bushandle,
- 1, data);
+
+ bus_space_write_1(sc->bt_ioport, sc->bh_ioport, 1, data);
pcf_nops();
}
@@ -109,8 +109,7 @@ pcf_get_S0(struct pcf_softc *sc)
{
char data;
- data = bus_space_read_1(sc->res_ioport->r_bustag,
- sc->res_ioport->r_bushandle, 0);
+ data = bus_space_read_1(sc->bt_ioport, sc->bh_ioport, 0);
pcf_nops();
return (data);
@@ -121,8 +120,7 @@ pcf_get_S1(struct pcf_softc *sc)
{
char data;
- data = bus_space_read_1(sc->res_ioport->r_bustag,
- sc->res_ioport->r_bushandle, 1);
+ data = bus_space_read_1(sc->bt_ioport, sc->bh_ioport, 1);
pcf_nops();
return (data);
OpenPOWER on IntegriCloud