drm_edid.c | 2074 * edid_vendor - match a string against EDID's obfuscated vendor field 2080 static bool edid_vendor(const struct edid *edid, const char *vendor) function in typeref:typename:bool 2082 char edid_vendor[3]; local in function:edid_vendor 2084 edid_vendor[0] = ((edid->mfg_id[0] & 0x7c) >> 2) + '@'; 2085 edid_vendor[1] = (((edid->mfg_id[0] & 0x3) << 3) | 2087 edid_vendor[2] = (edid->mfg_id[1] & 0x1f) + '@'; 2089 return !strncmp(edid_vendor, vendor, 3); 2106 if (edid_vendor(edid, quirk->vendor) &&
|