diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-10-22 17:02:44 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-10-22 17:02:44 +0000 |
commit | c8863a234f627d5d1117e13ae828b21e18605aea (patch) | |
tree | cf248a279a1ca39fcd10a4edaf61cf8948a06707 | |
parent | 26eb33faca6b22028c52c74d7cc55ef536028061 (diff) |
minimal whitespace fix (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4824 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/southbridge/ricoh/rl5c476/rl5c476.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/ricoh/rl5c476/rl5c476.c b/src/southbridge/ricoh/rl5c476/rl5c476.c index 799619775e..3b133a4376 100644 --- a/src/southbridge/ricoh/rl5c476/rl5c476.c +++ b/src/southbridge/ricoh/rl5c476/rl5c476.c @@ -172,7 +172,7 @@ void rl5c476_read_resources(device_t dev) if( enable_cf_boot && (PCI_FUNC(dev->path.pci.devfn) == 1)){ /* fake index as it isn't in PCI config space */ resource = new_resource(dev, 1); - resource->flags |= IORESOURCE_MEM ; + resource->flags |= IORESOURCE_MEM; resource->size = 0x1000; resource->align = resource->gran = 12; resource->limit= 0xffff0000; @@ -188,7 +188,7 @@ void rl5c476_set_resources(device_t dev) resource = find_resource(dev,1); if( !(resource->flags & IORESOURCE_STORED) ){ resource->flags |= IORESOURCE_STORED ; - printk_debug("%s 1 ==> %x\n",dev_path(dev),resource->base); + printk_debug("%s 1 ==> %x\n", dev_path(dev), resource->base); cf_base = resource->base; } } |