diff options
-rw-r--r-- | sys/dev/scc/scc_dev_quicc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/scc/scc_dev_quicc.c b/sys/dev/scc/scc_dev_quicc.c index e2fdb628b633..59c2f97037d3 100644 --- a/sys/dev/scc/scc_dev_quicc.c +++ b/sys/dev/scc/scc_dev_quicc.c @@ -44,9 +44,13 @@ __FBSDID("$FreeBSD$"); #define quicc_read2(bas, reg) \ bus_space_read_2((bas)->bst, (bas)->bsh, reg) +#define quicc_read4(bas, reg) \ + bus_space_read_4((bas)->bst, (bas)->bsh, reg) #define quicc_write2(bas, reg, val) \ bus_space_write_2((bas)->bst, (bas)->bsh, reg, val) +#define quicc_write4(bas, reg, val) \ + bus_space_write_4((bas)->bst, (bas)->bsh, reg, val) static int quicc_bfe_attach(struct scc_softc *, int); static int quicc_bfe_enabled(struct scc_softc *, struct scc_chan *); |