From a60aadf9e9f43ce5e986d149c688d1c223aef907 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 15 Apr 2005 17:09:47 +0000 Subject: [PATCH] Improve debug message legibility. --- src/drivers/bus/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);