Commit 5fc0937f authored by Dave Jones's avatar Dave Jones

[PATCH] More verbosity in VIA tweak

From 2.4
parent 02b331b5
......@@ -1205,7 +1205,8 @@ static void __init pci_fixup_via_northbridge_bug(struct pci_dev *d)
pci_read_config_byte(d, where, &v);
if (v & 0xe0) {
printk("Disabling broken memory write queue.\n");
printk("Disabling broken memory write queue: [%02x] %02x->%02x\n",
where, v, v & 0x1f);
v &= 0x1f; /* clear bits 5, 6, 7 */
pci_write_config_byte(d, where, v);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment