summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/probing.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-05-18 01:06:47 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-05-18 01:06:47 +0000
commitf8409e16777b1f26b77ab54a0a9574cc7ddb8958 (patch)
tree31bee4bfd2d7c070fc14250206d7d76f8919da1b /mdk-stage1/probing.c
parent8df3626ae183a2febde90a749c12ae1f425b9ffc (diff)
downloaddrakx-f8409e16777b1f26b77ab54a0a9574cc7ddb8958.tar
drakx-f8409e16777b1f26b77ab54a0a9574cc7ddb8958.tar.gz
drakx-f8409e16777b1f26b77ab54a0a9574cc7ddb8958.tar.bz2
drakx-f8409e16777b1f26b77ab54a0a9574cc7ddb8958.tar.xz
drakx-f8409e16777b1f26b77ab54a0a9574cc7ddb8958.zip
be sure to print pci vendor and id with 4 digits each
Diffstat (limited to 'mdk-stage1/probing.c')
-rw-r--r--mdk-stage1/probing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c
index 8f537998f..5b366ca7b 100644
--- a/mdk-stage1/probing.c
+++ b/mdk-stage1/probing.c
@@ -160,7 +160,7 @@ static void probe_that_type(enum driver_type type)
for (i = 0; i < len; i++) {
if (pcidb[i].vendor == vendor && pcidb[i].device == device) {
- log_message("PCI: device %x %x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module);
+ log_message("PCI: device %04x %04x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module);
#ifndef DISABLE_MEDIAS
if (type == SCSI_ADAPTERS) {
stg1_info_message("About to load driver for SCSI adapter:\n \n%s", pcidb[i].name);