summaryrefslogtreecommitdiffstats
path: root/device/hypertransport.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-03-07 21:07:13 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-03-07 21:07:13 +0000
commitaa01c41f42b87539bc9b0ef314fc430a10c5b28f (patch)
treee09f19a7fa8587c74d7012af9dbbdd7d802ffaa6 /device/hypertransport.c
parenta8c461ba917a028594f41faacf66f8d7fc733ff3 (diff)
downloadcoreboot-aa01c41f42b87539bc9b0ef314fc430a10c5b28f.tar.gz
coreboot-aa01c41f42b87539bc9b0ef314fc430a10c5b28f.tar.bz2
coreboot-aa01c41f42b87539bc9b0ef314fc430a10c5b28f.zip
A bunch of small cosmetic improvement of the printk() calls (trivial).
Add "(LB) " to all log messages to differentiate them visually from the rest of the boot messages. This is similar to what Xen does when booting (it prefixes all log messages with "(XEN) "). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@209 f3766cd6-281f-0410-b1cd-43a5c92072e9
Diffstat (limited to 'device/hypertransport.c')
-rw-r--r--device/hypertransport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/hypertransport.c b/device/hypertransport.c
index 6b9d1ef9f952..45b26782dfdd 100644
--- a/device/hypertransport.c
+++ b/device/hypertransport.c
@@ -262,7 +262,7 @@ static unsigned ht_lookup_slave_capability(struct device *dev)
if (pos) {
unsigned flags;
flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS);
- printk_spew("flags: 0x%04x\n", flags);
+ printk_spew("Flags: 0x%04x\n", flags);
if ((flags >> 13) == 0) {
/* Entry is a Slave secondary, success... */
break;
@@ -551,7 +551,7 @@ unsigned int hypertransport_scan_chain(struct bus *bus,
for(left = old_devices; left; left = left->sibling) {
printk_debug("%s\n", dev_path(left));
}
- printk_err("HT: Left over static devices. Check your Config.lb\n");
+ printk_err("HT: Left over static devices. Check your Config.lb\n");
if(last_func && !last_func->sibling) // put back the left over static device, and let pci_scan_bus disable it
last_func->sibling = old_devices;
}