diff options
author | Rahul Batra <rbatra@us.ibm.com> | 2017-08-18 14:37:15 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-09-01 11:00:21 -0400 |
commit | c2cdffecc3f9e0bcbd20a0e8638911ab316f5229 (patch) | |
tree | 27b8a8502c4eefcb0d1746a4dba65574d8fb097e /src/import/chips/p9/procedures/hwp/lib | |
parent | e0788b7c4699408a17ed4377437cafa3cf4d0125 (diff) | |
download | talos-hostboot-c2cdffecc3f9e0bcbd20a0e8638911ab316f5229.tar.gz talos-hostboot-c2cdffecc3f9e0bcbd20a0e8638911ab316f5229.zip |
PM: PGPE Flags Struct Fix
Change-Id: Ic1d4939a8a3ef07e68faf7e652f47208e5600019
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44820
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-by: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44826
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/lib')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/lib/p9_pm_hcd_flags.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/import/chips/p9/procedures/hwp/lib/p9_pm_hcd_flags.h b/src/import/chips/p9/procedures/hwp/lib/p9_pm_hcd_flags.h index 64d50f6c3..9912731f5 100644 --- a/src/import/chips/p9/procedures/hwp/lib/p9_pm_hcd_flags.h +++ b/src/import/chips/p9/procedures/hwp/lib/p9_pm_hcd_flags.h @@ -117,9 +117,9 @@ typedef union pgpe_flags uint16_t enable_fratio : 1; uint16_t enable_vratio : 1; uint16_t vratio_modifier : 1; - uint16_t reserved_13_15 : 7; + uint16_t reserved_13_15 : 3; #else - uint16_t reserved_13_15 : 7; + uint16_t reserved_13_15 : 3; uint16_t vratio_modifier : 1; uint16_t enable_vratio : 1; uint16_t enable_fratio : 1; |