diff --git a/arch/x86/pci_ops_conf1.c b/arch/x86/pci_ops_conf1.c index d8ec475189..d305a2a9d5 100644 --- a/arch/x86/pci_ops_conf1.c +++ b/arch/x86/pci_ops_conf1.c @@ -144,8 +144,10 @@ int pci_conf1_find_on_bus(u16 bus, u16 vid, u16 did, u32 *busdevfn) * things are set up (which we have to be able to do * in stage 0 */ - if (! busses) + if (!busses) { + printk(BIOS_WARNING, "pci_conf1_find_on_bus: busses is 0!\n"); continue; + } if (pci_conf1_find_on_bus((busses >> 8) & 0xFF, vid, did, busdevfn)) return 1; } diff --git a/lib/lar.c b/lib/lar.c index 01efd42a8f..63d9604b21 100644 --- a/lib/lar.c +++ b/lib/lar.c @@ -120,8 +120,8 @@ int find_file(const struct mem_file *archive, const char *filename, struct mem_f header = (struct lar_header *)walk; fullname = walk + sizeof(struct lar_header); - printk(BIOS_SPEW, "LAR: %s@%p, size %d\n", fullname, - header, ntohl(header->len)); + printk(BIOS_SPEW, "LAR: seen member %s@%p, size %d\n", + fullname, header, ntohl(header->len)); // FIXME: check checksum if (strcmp(fullname, filename) == 0) {