aboutsummaryrefslogtreecommitdiff
path: root/src/devices/hypertransport.c
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-07-08 16:54:20 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-07-08 16:54:20 +0000
commit9ab91f5acbe54bf3298e81e69f2eb3079ffb3c54 (patch)
treee0baf9e6670a5b45c7faeb7e0a908ad8e8c90a51 /src/devices/hypertransport.c
parentbadf114438d2518e2d33363603e46c138f1cfd2c (diff)
code reformat
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1621 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/hypertransport.c')
-rw-r--r--src/devices/hypertransport.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/hypertransport.c b/src/devices/hypertransport.c
index db7426767d..2126889e19 100644
--- a/src/devices/hypertransport.c
+++ b/src/devices/hypertransport.c
@@ -14,9 +14,9 @@ static device_t ht_scan_get_devs(device_t *old_devices)
device_t first, last;
first = *old_devices;
last = first;
- while(last && last->sibling &&
- (last->sibling->path.type == DEVICE_PATH_PCI) &&
- (last->sibling->path.u.pci.devfn > last->path.u.pci.devfn)) {
+ while (last && last->sibling &&
+ (last->sibling->path.type == DEVICE_PATH_PCI) &&
+ (last->sibling->path.u.pci.devfn > last->path.u.pci.devfn)) {
last = last->sibling;
}
if (first) {