Browse Source

Improve debug message legibility.

tags/v0.9.3
Michael Brown 20 years ago
parent
commit
a60aadf9e9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/drivers/bus/pci.c

+ 1
- 1
src/drivers/bus/pci.c View File

101
 	pci_read_config_byte ( pci, PCI_LATENCY_TIMER, &pci_latency);
101
 	pci_read_config_byte ( pci, PCI_LATENCY_TIMER, &pci_latency);
102
 	if ( pci_latency < 32 ) {
102
 	if ( pci_latency < 32 ) {
103
 		DBG ( "%hhx:%hhx.%d : PCI latency timer (CFLT) "
103
 		DBG ( "%hhx:%hhx.%d : PCI latency timer (CFLT) "
104
-		      "is unreasonably low at %d. Setting to 32 clocks.\n",
104
+		      "is unreasonably low at %d. Setting to 32.\n",
105
 		      PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
105
 		      PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
106
 		      PCI_FUNC ( pci->busdevfn ), pci_latency );
106
 		      PCI_FUNC ( pci->busdevfn ), pci_latency );
107
 		pci_write_config_byte ( pci, PCI_LATENCY_TIMER, 32);
107
 		pci_write_config_byte ( pci, PCI_LATENCY_TIMER, 32);

Loading…
Cancel
Save