summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorMichael Brown2005-04-15 19:09:47 +0200
committerMichael Brown2005-04-15 19:09:47 +0200
commita60aadf9e9f43ce5e986d149c688d1c223aef907 (patch)
tree4be50c55f157c5416470a95fa0e328834797173d /src/drivers
parentLeave some time to see what's going on. (diff)
downloadipxe-a60aadf9e9f43ce5e986d149c688d1c223aef907.tar.gz
ipxe-a60aadf9e9f43ce5e986d149c688d1c223aef907.tar.xz
ipxe-a60aadf9e9f43ce5e986d149c688d1c223aef907.zip
Improve debug message legibility.
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/bus/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/bus/pci.c b/src/drivers/bus/pci.c
index 4fe01cad..04305d4d 100644
--- a/src/drivers/bus/pci.c
+++ b/src/drivers/bus/pci.c
@@ -101,7 +101,7 @@ void adjust_pci_device ( struct pci_device *pci ) {
pci_read_config_byte ( pci, PCI_LATENCY_TIMER, &pci_latency);
if ( pci_latency < 32 ) {
DBG ( "%hhx:%hhx.%d : PCI latency timer (CFLT) "
- "is unreasonably low at %d. Setting to 32 clocks.\n",
+ "is unreasonably low at %d. Setting to 32.\n",
PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
PCI_FUNC ( pci->busdevfn ), pci_latency );
pci_write_config_byte ( pci, PCI_LATENCY_TIMER, 32);