summaryrefslogtreecommitdiffstats
path: root/sys/sys/bus_dma.h
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1999-07-03 20:14:08 +0000
committerimp <imp@FreeBSD.org>1999-07-03 20:14:08 +0000
commit7afdd102ca81aa50337adf724b0a330ca4120544 (patch)
tree4459bd279c5132937ddca8161a234155988d6787 /sys/sys/bus_dma.h
parentea3879346228a463d59821089bc65954cc4a9a31 (diff)
downloadFreeBSD-src-7afdd102ca81aa50337adf724b0a330ca4120544.zip
FreeBSD-src-7afdd102ca81aa50337adf724b0a330ca4120544.tar.gz
Improve compatibility with other systems by changing the default
behavior slightly. If machine/bus.h is included, but neither bus_memio.h nor bus_pio.h are included, then behave as if both were included. This won't change existing drivers, all of which include one or more of bus_{p,mem}io.h, but will allow drivers from other systems to come over with fewer changes. I freely admit that this might not be optimal for some drivers, but those drivers can be optimized for FreeBSD after the initial bringup happens. Without the change, there is a bug that preclude drivers from compiling with strange warning/errors. I've been running this here for a while now w/o ill effects. Reviewed by: gibbs Not objected to by: bde, arch@ list.
Diffstat (limited to 'sys/sys/bus_dma.h')
-rw-r--r--sys/sys/bus_dma.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/sys/bus_dma.h b/sys/sys/bus_dma.h
index 75b2b73..28e80ba 100644
--- a/sys/sys/bus_dma.h
+++ b/sys/sys/bus_dma.h
@@ -67,7 +67,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: bus.h,v 1.3 1998/05/06 01:45:47 gibbs Exp $ */
+/* $Id: bus.h,v 1.4 1998/09/29 09:06:00 bde Exp $ */
#ifndef _I386_BUS_H_
#define _I386_BUS_H_
@@ -75,6 +75,15 @@
#include <machine/cpufunc.h>
/*
+ * To remain compatible with NetBSD's interface, default to both memio and
+ * pio when neither of them is defined.
+ */
+#if !defined(_I386_BUS_PIO_H_) && !defined(_I386_BUS_MEMIO_H_)
+#define _I386_BUS_PIO_H_
+#define _I386_BUS_MEMIO_H_
+#endif
+
+/*
* Values for the i386 bus space tag, not to be used directly by MI code.
*/
#define I386_BUS_SPACE_IO 0 /* space is i/o space */
OpenPOWER on IntegriCloud