Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6529
-gerrit
commit 05c9cbfdb7f9565a33af9f0df8a3deec885e7265 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Fri Aug 8 15:24:31 2014 +0200
southbridge/ricoh,ti: Remove trailing whitespace in debug output
Change-Id: If58854c35dce83bf6db7a84a8cb441cc3e60d6d4 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/southbridge/ricoh/rl5c476/rl5c476.c | 2 +- src/southbridge/ti/pci7420/cardbus.c | 4 ++-- src/southbridge/ti/pcixx12/pcixx12.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/southbridge/ricoh/rl5c476/rl5c476.c b/src/southbridge/ricoh/rl5c476/rl5c476.c index 0efcafa..ab13957 100644 --- a/src/southbridge/ricoh/rl5c476/rl5c476.c +++ b/src/southbridge/ricoh/rl5c476/rl5c476.c @@ -184,7 +184,7 @@ static void rl5c476_read_resources(device_t dev) static void rl5c476_set_resources(device_t dev) { struct resource *resource; - printk(BIOS_DEBUG, "%s In set resources \n",dev_path(dev)); + printk(BIOS_DEBUG, "%s In set resources\n",dev_path(dev)); if( enable_cf_boot && (PCI_FUNC(dev->path.pci.devfn) == 1)){ resource = find_resource(dev,1); if( !(resource->flags & IORESOURCE_STORED) ){ diff --git a/src/southbridge/ti/pci7420/cardbus.c b/src/southbridge/ti/pci7420/cardbus.c index 2ab383b..64878b3 100644 --- a/src/southbridge/ti/pci7420/cardbus.c +++ b/src/southbridge/ti/pci7420/cardbus.c @@ -90,11 +90,11 @@ static void pci7420_cardbus_read_resources(device_t dev)
static void pci7420_cardbus_set_resources(device_t dev) { - printk(BIOS_DEBUG, "%s In set resources \n",dev_path(dev)); + printk(BIOS_DEBUG, "%s In set resources\n",dev_path(dev));
pci_dev_set_resources(dev);
- printk(BIOS_DEBUG, "%s done set resources \n",dev_path(dev)); + printk(BIOS_DEBUG, "%s done set resources\n",dev_path(dev)); }
static struct device_operations ti_pci7420_ops = { diff --git a/src/southbridge/ti/pcixx12/pcixx12.c b/src/southbridge/ti/pcixx12/pcixx12.c index 5e62292..abddba1 100644 --- a/src/southbridge/ti/pcixx12/pcixx12.c +++ b/src/southbridge/ti/pcixx12/pcixx12.c @@ -38,11 +38,11 @@ static void pcixx12_read_resources(device_t dev)
static void pcixx12_set_resources(device_t dev) { - printk(BIOS_DEBUG, "%s In set resources \n",dev_path(dev)); + printk(BIOS_DEBUG, "%s In set resources\n",dev_path(dev));
pci_dev_set_resources(dev);
- printk(BIOS_DEBUG, "%s done set resources \n",dev_path(dev)); + printk(BIOS_DEBUG, "%s done set resources\n",dev_path(dev)); }
static struct device_operations ti_pcixx12_ops = {