/* * Note: we don't use any kind of indexes (btrees, etc) here, because * that would add more overhead than it would improve performance. */ #include "hwscan2.h" int main() { read_modmap(); read_pcimap(); read_usbmap(); scan_pci(); scan_usb(); printf("\n"); return 0; }