From 96a60363f896ed4c21ef8af629b2c8eb92486d93 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 1 Aug 2008 11:50:52 +0000 Subject: coding style fixes (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3451 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/ricoh/rl5c476/rl5c476.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/southbridge/ricoh') 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 * - * * 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 #include #include @@ -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)){ -- cgit v1.2.3