Produce no output unless -v is specified or an error occurs.

pull/1/head
Michael Brown 2007-07-17 01:59:48 +01:00
parent dc52db4920
commit cb237819ca
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ sub pcipnpheaders ($$) {
$pci_hdr_offset = $pnp_hdr_offset = 0; $pci_hdr_offset = $pnp_hdr_offset = 0;
} else { } else {
printf "PCI header at %#x and PnP header at %#x\n", printf "PCI header at %#x and PnP header at %#x\n",
$pci_hdr_offset, $pnp_hdr_offset; $pci_hdr_offset, $pnp_hdr_offset if $opts{'v'};
} }
if ($pci_hdr_offset > 0) { if ($pci_hdr_offset > 0) {
my ($pci_vendor_id, $pci_device_id); my ($pci_vendor_id, $pci_device_id);
@ -112,7 +112,7 @@ sub undiheaders ($) {
or substr($$romref, $undi_hdr_offset, 4) ne 'UNDI') { or substr($$romref, $undi_hdr_offset, 4) ne 'UNDI') {
$undi_hdr_offset = 0; $undi_hdr_offset = 0;
} else { } else {
printf "UNDI header at %#x\n", $undi_hdr_offset; printf "UNDI header at %#x\n", $undi_hdr_offset if $opts{'v'};
} }
if ($undi_hdr_offset > 0) { if ($undi_hdr_offset > 0) {
substr($$romref, $undi_hdr_offset+UNDI_CHKSUM_OFF, 1) = "\x00"; substr($$romref, $undi_hdr_offset+UNDI_CHKSUM_OFF, 1) = "\x00";