diff --git a/include/version.h b/include/version.h index d784061..b492ba1 100644 --- a/include/version.h +++ b/include/version.h @@ -1,3 +1,3 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 1 -#define VERSION_BUILD 428 +#define VERSION_BUILD 430 diff --git a/modules/pci/main.c b/modules/pci/main.c index 951969e..0b780e9 100644 --- a/modules/pci/main.c +++ b/modules/pci/main.c @@ -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++; } }