aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/ricoh
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-08-01 11:50:52 +0000
committerStefan Reinauer <stepan@openbios.org>2008-08-01 11:50:52 +0000
commit96a60363f896ed4c21ef8af629b2c8eb92486d93 (patch)
tree65f2f86b645dfa102c2f38591b123b9dd7871e56 /src/southbridge/ricoh
parent20ffc03efaea79a74bdb82adb5be67a58afe2e64 (diff)
coding style fixes (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@3451 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/ricoh')
-rw-r--r--src/southbridge/ricoh/rl5c476/rl5c476.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/southbridge/ricoh/rl5c476/rl5c476.c b/src/southbridge/ricoh/rl5c476/rl5c476.c
index b0f4de7e34..59cc7af45b 100644
--- a/src/southbridge/ricoh/rl5c476/rl5c476.c
+++ b/src/southbridge/ricoh/rl5c476/rl5c476.c
@@ -1,7 +1,6 @@
/*
* (C) Copyright 2004 Nick Barker <nick.barker9@btinternet.com>
*
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
@@ -20,7 +19,6 @@
/* (C) Copyright 2005 Nick Barker <nick.barker@btinternet.com
brought into line with the current architecture of coreboot */
-
#include <arch/io.h>
#include <device/device.h>
#include <device/pci.h>
@@ -34,10 +32,10 @@
static int enable_cf_boot = 0;
static unsigned int cf_base;
-static void udelay(int i){
+static void udelay(int i)
+{
for(; i > 0 ; i--)
inb(0x80);
-
}
static void rl5c476_init(device_t dev)
@@ -105,8 +103,6 @@ static void rl5c476_init(device_t dev)
pc16->ioffl1 = 0x0;
pc16->ioffh1 = 0;
-
-
// set up CF config window
pc16->smpga0 = cf_base>>24;
pc16->smsth0 = (cf_base>>20)&0x0f;
@@ -164,15 +160,12 @@ void rl5c476_read_resources(device_t dev)
resource->size = 0x1000;
resource->align = resource->gran = 12;
resource->limit= 0xffff0000;
- //compute_allocate_resource(&dev->link[0],resource,resource->flags,resource->flags);
}
cardbus_read_resources(dev);
-
}
void rl5c476_set_resources(device_t dev)
{
-
struct resource *resource;
printk_debug("%s In set resources \n",dev_path(dev));
if( enable_cf_boot && (PCI_FUNC(dev->path.u.pci.devfn) == 1)){