CVSROOT: /cvs Module name: src Changes by: [email protected] 2010/03/03 08:12:06
Modified files:
sys/arch/arm/s3c2xx0: s3c2xx0_space.c
Log message:
When allocating virtual space for bus_space_map, don't use
uvm_km_alloc() (which allocates some virtual space and then
$size_of_mapping pages which it then enters) *then* pmap_kenter the
bus_space address that we wish to map, it's just a little bit stupid and
a waste of memory.
replace with uvm_km_valloc and ponies for everyone.
ok drahn@
