Исправлено отображение классов PCI

This commit is contained in:
Aren Elchinyan 2023-11-05 15:32:45 +03:00
parent bc1cec2240
commit 9e8bc4b343
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
#define VERSION_BUILD 428
#define VERSION_BUILD 430

View File

@ -57,8 +57,8 @@ static void scan( ) {
uint16_t device_id = get_device_id(bus, slot, function);
uint16_t class_id = get_class_id(bus, slot, function);
fb_printf("[%u] vendor: %x, device: %x, class: %u\n",
devices, vendor, device_id);
fb_printf("[%u] vendor: %x, device: %x, class: %u\n", devices,
vendor, device_id, class_id);
devices++;
}
}