[Skiboot] [PATCH] hostservices: Fix lid load
Ananth N Mavinakayanahalli
ananth at in.ibm.com
Thu Feb 19 14:43:55 AEDT 2015
Fix the loop iterator to not miss a lid
Signed-off-by: Ananth N Mavinakayanahalli <ananth at in.ibm.com>
---
core/hostservices.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/hostservices.c b/core/hostservices.c
index ad19e15..d981a50 100644
--- a/core/hostservices.c
+++ b/core/hostservices.c
@@ -465,7 +465,7 @@ void hservices_lid_preload(void)
prlog(PR_INFO, "HBRT: %d lids to load\n", (int)num_lids);
/* Currently HBRT needs only one (OCC) lid */
- while (num_lids--)
+ while (--num_lids)
__hservice_lid_preload(lid_list[num_lids]);
}
More information about the Skiboot
mailing list