common: display: Add additional field support to parser
Add support for panel physical dimension fields to parser to generate dtsi with those additional fields. Change-Id: I7de1e9e42efb8ee5bb55298ba58a4db64d88f8ce
This commit is contained in:
parent
fb2dd2560b
commit
4aff6c3a90
|
@ -496,6 +496,17 @@ if(uc($ARGV[1]) eq "PANEL")
|
|||
"qcom,mdss-dsi-bl-pmic-control-type");
|
||||
}
|
||||
|
||||
@attrs = ("PanPhysicalWidthDimension",
|
||||
"PanPhysicalHeightDimension");
|
||||
foreach(@attrs)
|
||||
{
|
||||
push(my @tmp, $_);
|
||||
my $lower = $_;
|
||||
$lower = convertLower($lower);
|
||||
printArray($PANELDTSI, \@tmp, $property,
|
||||
"qcom,mdss-" . $lower);
|
||||
}
|
||||
|
||||
my @attr = ("FBCbpp", "FBCPacking",
|
||||
"FBCBias",
|
||||
"FBCHLineBudget", "FBCBlockBudget",
|
||||
|
|
Loading…
Reference in New Issue