diff options
author | Simon Ser <contact@emersion.fr> | 2021-10-26 16:24:13 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-10-26 08:45:30 -0600 |
commit | 5619cf368bb55a3b987860fba8f6cf8202fc18f1 (patch) | |
tree | 1fc434e29b7814afa23b294006f56975033d0018 | |
parent | c43130cb8958293b214117c449dfb06b045aa948 (diff) |
backend/drm: add entry for Valve EDID vendor
As found in e.g. the Steam Deck.
-rw-r--r-- | backend/drm/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/drm/util.c b/backend/drm/util.c index 5041ab9a..3cf656fb 100644 --- a/backend/drm/util.c +++ b/backend/drm/util.c @@ -94,6 +94,7 @@ static const char *get_manufacturer(uint16_t id) { case ID('V', 'E', 'S'): return "Vestel Elektronik Sanayi ve Ticaret A. S."; case ID('V', 'I', 'T'): return "Visitech AS"; case ID('V', 'I', 'Z'): return "VIZIO, Inc"; + case ID('V', 'L', 'V'): return "Valve"; case ID('V', 'S', 'C'): return "ViewSonic Corporation"; case ID('Y', 'M', 'H'): return "Yamaha Corporation"; default: return "Unknown"; |