diff options
author | marius <marius@FreeBSD.org> | 2013-08-03 21:24:52 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2013-08-03 21:24:52 +0000 |
commit | cba68a402e4f2518214d96fae5bf02c5bd9ca924 (patch) | |
tree | a47567eed87ac20e505f6003f1f7903ae70cddf2 /sys/dev/scc | |
parent | 8910432c4a4f2fa640dac0f4c49cf0b75ef3faa8 (diff) | |
download | FreeBSD-src-cba68a402e4f2518214d96fae5bf02c5bd9ca924.zip FreeBSD-src-cba68a402e4f2518214d96fae5bf02c5bd9ca924.tar.gz |
Make r253899 compile.
Diffstat (limited to 'sys/dev/scc')
-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 e2fdb62..59c2f97 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 *); |