Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 11/10/1996 03:20:02
thorpej
Sat Nov  9 19:16:18 PST 1996
Update of /cvsroot/src/sys/arch/i386/i386
In directory netbsd1:/var/slash-tmp/cvs-serv20725

Modified Files:
	machdep.c 
Log Message:
The boundary argument to bus_space_alloc() should be a bus_size_t, not
a bus_addr_t.  Pointed out by Chris Demetriou <cgd@cs.cmu.edu>.


thorpej
Sat Nov  9 19:19:26 PST 1996
Update of /cvsroot/src/sys/arch/i386/include
In directory netbsd1:/var/slash-tmp/cvs-serv20986

Modified Files:
	bus.h 
Log Message:
Two things pointed out by Chris Demetriou <cgd@cs.cmu.edu>:
- The boundary argument to bus_space_alloc() should be a bus_size_t, not
  a bus_addr_t.
- The buffer arguments in the "multiple write" methods should have
  const qualifiers.

And one from me:
- Make bus_space_barrier() eat up the arguments passed to it so that
  the compiler doesn't needlessly whine.