summaryrefslogtreecommitdiffstats
path: root/src/include/util
diff options
context:
space:
mode:
authorayma <ayma@us.ibm.com>2012-12-13 16:29:39 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-12-18 15:46:41 -0600
commit7f36ca65b3ce2c358fcfff0ab4d30204fa9e89cc (patch)
tree4e3ddccf3fc4518ab25e4184093f7e97783478fa /src/include/util
parent3147572991fa9eff4be6095b08b0299421e596b5 (diff)
downloadtalos-hostboot-7f36ca65b3ce2c358fcfff0ab4d30204fa9e89cc.tar.gz
talos-hostboot-7f36ca65b3ce2c358fcfff0ab4d30204fa9e89cc.zip
Changes to add support for dynamic VIDs on HB.
Changes to put code into HB to do the istep 13.1 and 13.5 which is disable_vddr and enable_vddr respectively This is in conjunction with story 37517 on the hwsv side RTC: 34041 Change-Id: Id09a78e581d2a778d781e2683cc7ec26c8d45153 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2687 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/util')
-rw-r--r--src/include/util/impl/qsort.H48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/include/util/impl/qsort.H b/src/include/util/impl/qsort.H
index 3146d7d73..aae3e423a 100644
--- a/src/include/util/impl/qsort.H
+++ b/src/include/util/impl/qsort.H
@@ -1,25 +1,25 @@
-// IBM_PROLOG_BEGIN_TAG
-// This is an automatically generated prolog.
-//
-// $Source: src/include/util/impl/qsort.H $
-//
-// IBM CONFIDENTIAL
-//
-// COPYRIGHT International Business Machines Corp. 2012
-//
-// p1
-//
-// Object Code Only (OCO) source materials
-// Licensed Internal Code Source Materials
-// IBM HostBoot Licensed Internal Code
-//
-// The source code for this program is not published or other-
-// wise divested of its trade secrets, irrespective of what has
-// been deposited with the U.S. Copyright Office.
-//
-// Origin: 30
-//
-// IBM_PROLOG_END
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/util/impl/qsort.H $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2012 */
+/* */
+/* p1 */
+/* */
+/* Object Code Only (OCO) source materials */
+/* Licensed Internal Code Source Materials */
+/* IBM HostBoot Licensed Internal Code */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* Origin: 30 */
+/* */
+/* IBM_PROLOG_END_TAG */
#ifndef __UTIL_IMPL_QSORT_H
#define __UTIL_IMPL_QSORT_H
@@ -178,9 +178,9 @@ namespace Util
}
// Sort each partition.
- sort(first,division);
+ sort(first,division,pred);
std::advance(division, 1);
- sort(division, last);
+ sort(division, last,pred);
};
};
OpenPOWER on IntegriCloud