freebsd-src/tools/bus_space
Marcel Moolenaar 71d80fbaf3 Change the dev argument from a full path to just the device
identification (e.g. isa:0x3f0 or pci0:2:1:0). In libbus,
the device is turned into a path name. For bus_space_map(),
the resource is now specified in a second argument.
Before:
	bus.map('/dev/proto/pci0:2:1:0/pcicfg')
	busdma.tag_create('/dev/proto/pci0:2:1:0/busdma', ...)
Now:
	bus.map('pci0:2:1:0', 'pcicfg')
	busdma.tag_create('pci0:2:1:0', ...)
2015-07-26 21:37:31 +00:00
..
C Change the dev argument from a full path to just the device 2015-07-26 21:37:31 +00:00
Python Change the dev argument from a full path to just the device 2015-07-26 21:37:31 +00:00
bus.c Change the dev argument from a full path to just the device 2015-07-26 21:37:31 +00:00
bus.h Change the dev argument from a full path to just the device 2015-07-26 21:37:31 +00:00
busdma.c Change the dev argument from a full path to just the device 2015-07-26 21:37:31 +00:00
busdma.h Implement busdma_md_unload() and busdma_sync(). 2015-07-03 05:47:56 +00:00
Makefile
Makefile.inc Rename bus_space to bus (i.e. drop _space). This makes the 2015-06-10 16:00:09 +00:00