mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
fix output in pcie and pcix device code. rename pciexp as the official abbr. is
PCIe (not used anywhere yet anyways) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@328 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
6c4d4e2c95
commit
41e7a51afd
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ static void pciexp_tune_dev(struct device *dev)
|
|||
/* error... */
|
||||
return;
|
||||
}
|
||||
printk(BIOS_DEBUG, "PCIEXP: tuning %s\n", dev_path(dev));
|
||||
printk(BIOS_DEBUG, "PCIe: tuning %s\n", dev_path(dev));
|
||||
#warning "IMPLEMENT PCI EXPRESS TUNING"
|
||||
}
|
||||
|
|
@ -129,7 +129,7 @@ unsigned int pcix_scan_bridge(struct device *dev, unsigned int max)
|
|||
}
|
||||
|
||||
/* Print the PCI-X bus speed. */
|
||||
printk(BIOS_DEBUG, "PCI: %02x: %s\n", dev->link[0].secondary,
|
||||
printk(BIOS_DEBUG, "PCI-X: %02x: %s\n", dev->link[0].secondary,
|
||||
pcix_speed(sstatus));
|
||||
|
||||
return max;
|
||||
|
|
Loading…
Add table
Reference in a new issue