summaryrefslogtreecommitdiff
path: root/libs/ui/DisplayIdentification.cpp
diff options
context:
space:
mode:
author Gil Dekel <gildekel@google.com> 2025-02-05 14:12:59 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2025-02-05 14:12:59 -0800
commit3f9ee01a0bcd2b06bd53359cfd2c18a717f66eb6 (patch)
treed33a559ce9ad741c1b6eb6a7e4d5d1fe80c33a96 /libs/ui/DisplayIdentification.cpp
parentf7d8ed5ac5fc88962d20daa5804975a62f3d131b (diff)
parentbddaa2414e35c6e455de0863a2e91ade3695bf59 (diff)
Merge "SF: Turn DisplayId::fromValue to an explicit wrapper" into main
Diffstat (limited to 'libs/ui/DisplayIdentification.cpp')
-rw-r--r--libs/ui/DisplayIdentification.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/DisplayIdentification.cpp b/libs/ui/DisplayIdentification.cpp
index b7ef9b3738..78e84fc4dc 100644
--- a/libs/ui/DisplayIdentification.cpp
+++ b/libs/ui/DisplayIdentification.cpp
@@ -444,7 +444,7 @@ PhysicalDisplayId generateEdidDisplayId(const Edid& edid) {
(edid.hashedBlockZeroSerialNumberOpt.value_or(0) >> 11) ^
(edid.hashedDescriptorBlockSerialNumberOpt.value_or(0) << 23);
- return PhysicalDisplayId::fromEdidHash(id);
+ return PhysicalDisplayId::fromValue(id);
}
} // namespace android