summaryrefslogtreecommitdiff
path: root/libs/ui/DisplayIdentification.cpp
diff options
context:
space:
mode:
author Gil Dekel <gildekel@google.com> 2025-01-24 08:59:50 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2025-01-24 08:59:50 -0800
commitad5ae5bcee55a59fad5ef3e7d29d26b9edbf1267 (patch)
tree34768c0e22905f44ff297dc56938fb6840e5256a /libs/ui/DisplayIdentification.cpp
parentca8bfa357cee3c353daf3cc4d2b14b1c226361d7 (diff)
parentba6afd88da6fbd18b0d8db8a85659b380d1b602b (diff)
Merge changes from topic "make-displayid-opaque" into main
* changes: libs/ui: Remove getManufacturerId() from DisplayId libs/ui: Remove isStable() flag from DisplayId
Diffstat (limited to 'libs/ui/DisplayIdentification.cpp')
-rw-r--r--libs/ui/DisplayIdentification.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/ui/DisplayIdentification.cpp b/libs/ui/DisplayIdentification.cpp
index c9f0761a01..ee38f5044c 100644
--- a/libs/ui/DisplayIdentification.cpp
+++ b/libs/ui/DisplayIdentification.cpp
@@ -392,10 +392,6 @@ std::optional<PnpId> getPnpId(uint16_t manufacturerId) {
return a && b && c ? std::make_optional(PnpId{a, b, c}) : std::nullopt;
}
-std::optional<PnpId> getPnpId(PhysicalDisplayId displayId) {
- return getPnpId(displayId.getManufacturerId());
-}
-
std::optional<DisplayIdentificationInfo> parseDisplayIdentificationData(
uint8_t port, const DisplayIdentificationData& data) {
if (data.empty()) {