mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
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', ...)
|
||
|---|---|---|
| .. | ||
| C | ||
| Python | ||
| bus.c | ||
| bus.h | ||
| busdma.c | ||
| busdma.h | ||
| Makefile | ||
| Makefile.inc | ||