diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2017-09-09 11:05:21 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-04-29 18:06:16 +0000 |
commit | 482f82278b7bf65e4482f74c6059beef4de27468 (patch) | |
tree | f411e7bfd0948bbdb7737334b078760e4e973245 /src/southbridge | |
parent | b1181c302f83b49c9fa2a70daf4becd9505d124b (diff) | |
download | coreboot-482f82278b7bf65e4482f74c6059beef4de27468.tar.xz |
sb/amd/cimx/sb800/lpc: Shorten and wrap long lines
Change-Id: I190d41816eef2a5b27a9026ed3d3c822eee8b42b
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/21462
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/southbridge')
-rw-r--r-- | src/southbridge/amd/cimx/sb800/lpc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/southbridge/amd/cimx/sb800/lpc.c b/src/southbridge/amd/cimx/sb800/lpc.c index 9e48ee1218..80d721375e 100644 --- a/src/southbridge/amd/cimx/sb800/lpc.c +++ b/src/southbridge/amd/cimx/sb800/lpc.c @@ -95,14 +95,15 @@ void lpc_enable_childrens_resources(device_t dev) && (child->path.type == DEVICE_PATH_PNP)) { struct resource *res; for (res = child->resource_list; res; res = res->next) { - u32 base, end; /* don't need long long */ + u32 base, end; /* don't need long long */ if (!(res->flags & IORESOURCE_IO)) continue; base = res->base; end = resource_end(res); /* - printk(BIOS_DEBUG, "sb800 lpc decode:%s, base=0x%08x, end=0x%08x\n", - dev_path(child), base, end); + printk(BIOS_DEBUG, "sb800 lpc decode:%s, + base=0x%08x, end=0x%08x\n", + dev_path(child), base, end); */ switch (base) { case 0x60: /* KB */ |