From cb237819ca158300a7ff83d40b29a1ac62743c0d Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 17 Jul 2007 01:59:48 +0100 Subject: [PATCH] Produce no output unless -v is specified or an error occurs. --- src/util/makerom.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/makerom.pl b/src/util/makerom.pl index a7d5cc4c..aed3a569 100755 --- a/src/util/makerom.pl +++ b/src/util/makerom.pl @@ -68,7 +68,7 @@ sub pcipnpheaders ($$) { $pci_hdr_offset = $pnp_hdr_offset = 0; } else { 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) { my ($pci_vendor_id, $pci_device_id); @@ -112,7 +112,7 @@ sub undiheaders ($) { or substr($$romref, $undi_hdr_offset, 4) ne 'UNDI') { $undi_hdr_offset = 0; } 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) { substr($$romref, $undi_hdr_offset+UNDI_CHKSUM_OFF, 1) = "\x00";