Author: myles Date: 2009-08-21 16:59:14 +0200 (Fri, 21 Aug 2009) New Revision: 4560
Modified: trunk/coreboot-v2/src/devices/pci_device.c Log: Trivial spelling corrections. Signed-off-by: Myles Watson <[email protected]> Acked-by: Myles Watson <[email protected]> Modified: trunk/coreboot-v2/src/devices/pci_device.c =================================================================== --- trunk/coreboot-v2/src/devices/pci_device.c 2009-08-20 18:05:31 UTC (rev 4559) +++ trunk/coreboot-v2/src/devices/pci_device.c 2009-08-21 14:59:14 UTC (rev 4560) @@ -747,7 +747,7 @@ #if CONFIG_PCIX_PLUGIN_SUPPORT == 1 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX); if (pos) { - printk_debug("%s subbordinate bus PCI-X\n", dev_path(dev)); + printk_debug("%s subordinate bus PCI-X\n", dev_path(dev)); return &default_pcix_ops_bus; } #endif @@ -761,7 +761,7 @@ flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS); if ((flags >> 13) == 1) { /* Host or Secondary Interface */ - printk_debug("%s subbordinate bus Hypertransport\n", + printk_debug("%s subordinate bus Hypertransport\n", dev_path(dev)); return &default_ht_ops_bus; } @@ -776,11 +776,11 @@ case PCI_EXP_TYPE_ROOT_PORT: case PCI_EXP_TYPE_UPSTREAM: case PCI_EXP_TYPE_DOWNSTREAM: - printk_debug("%s subbordinate bus PCI Express\n", + printk_debug("%s subordinate bus PCI Express\n", dev_path(dev)); return &default_pciexp_ops_bus; case PCI_EXP_TYPE_PCI_BRIDGE: - printk_debug("%s subbordinate PCI\n", dev_path(dev)); + printk_debug("%s subordinate PCI\n", dev_path(dev)); return &default_pci_ops_bus; default: break; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

