Author: marius
Date: Sat Aug  3 21:24:52 2013
New Revision: 253920
URL: http://svnweb.freebsd.org/changeset/base/253920

Log:
  Make r253899 compile.

Modified:
  head/sys/dev/scc/scc_dev_quicc.c

Modified: head/sys/dev/scc/scc_dev_quicc.c
==============================================================================
--- head/sys/dev/scc/scc_dev_quicc.c    Sat Aug  3 20:14:29 2013        
(r253919)
+++ head/sys/dev/scc/scc_dev_quicc.c    Sat Aug  3 21:24:52 2013        
(r253920)
@@ -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 *);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to