intel/fsp_bd82x6x: Fix cycle error some more

As a follow up to #6479 (63e1948643),
fix the remaining faulty loop.

Change-Id: I2c77efe620c71e939f4d74e48f90a166c782e5f5
Found-by: Coverity Scan
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/6569
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <gaumless@gmail.com>
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
Patrick Georgi 2014-08-09 19:50:15 +02:00
parent e887ca5a74
commit 77c9508f58
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static void dump_gpe0_status(u32 gpe0_sts)
{ {
int i; int i;
printk(BIOS_DEBUG, "GPE0_STS: "); printk(BIOS_DEBUG, "GPE0_STS: ");
for (i=31; i<= 16; i--) { for (i=31; i>= 16; i--) {
if (gpe0_sts & (1 << i)) printk(BIOS_DEBUG, "GPIO%d ", (i-16)); if (gpe0_sts & (1 << i)) printk(BIOS_DEBUG, "GPIO%d ", (i-16));
} }
if (gpe0_sts & (1 << 14)) printk(BIOS_DEBUG, "USB4 "); if (gpe0_sts & (1 << 14)) printk(BIOS_DEBUG, "USB4 ");