Skip to content

Commit

Permalink
Allow HWP to deconfigure parts without a callout
Browse files Browse the repository at this point in the history
Change-Id: I1a903257c8c87957ed1a1331aab0b6398e416def
RTC: 174701
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41850
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
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: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41858
Reviewed-by: Hostboot Team <hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
  • Loading branch information
mderkse1 authored and sgupta2m committed Jun 19, 2017
1 parent d27f5c3 commit ccc8e8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/import/hwpf/fapi2/include/error_info_defs.H
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ enum CalloutPriority
LOW = 0,
MEDIUM = 1,
HIGH = 2,
NONE = 3,
};
}

Expand Down
4 changes: 2 additions & 2 deletions src/import/hwpf/fapi2/tools/parseErrorInfo.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ sub addFfdcMethod
foreach my $cdg ( keys %cdgTargetHash )
{
my $callout = 0;
my $priority = 'LOW';
my $priority = 'NONE';
my $deconf = 0;
my $gard = 0;

Expand Down Expand Up @@ -1296,7 +1296,7 @@ sub addFfdcMethod
foreach my $childType ( keys %{ $cdgChildHash{$parent} } )
{
my $callout = 0;
my $priority = 'LOW';
my $priority = 'NONE';
my $deconf = 0;
my $gard = 0;
my $childPort = 0xFF;
Expand Down

0 comments on commit ccc8e8a

Please sign in to comment.