diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2021-09-27 15:34:50 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2021-09-27 15:34:50 +0200 |
commit | a0ae044573f7a68b8eb40c40719743cb64b11381 (patch) | |
tree | 564208aaa3413d6b42ca48d91567c9a8959bc98f /oui.h | |
parent | b7049c80880f6fcd1552ce9999b468d627a0a8b6 (diff) |
edid-decode: fix reporting PNP as a proper PNP
The PNP for a DisplayID 1.2 data block was reported as an OUI due
to incorrect logic. Fixed this.
Also use big endian for the Product Identification Data Block 0x00.
That's a better match with the hex identifier 0x415050 ('APP').
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'oui.h')
-rw-r--r-- | oui.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,6 +15,6 @@ oneoui(0xca125c, Microsoft, "Microsoft" ) oneoui(0x3a0292, VESA, "VESA" ) // https://uefi.org/pnp_id_list -oneoui(0x505041, asciiApple, "Apple" ) // 'APP\0' +oneoui(0x415050, asciiApple, "Apple" ) // 'APP\0' #undef oneoui |