Lines Matching defs:ident
1218 * ident. The quirk data is shared but it's up to the drivers to act on the
1225 drm_dp_get_quirks(const struct drm_dp_dpcd_ident *ident, bool is_branch)
1238 if (memcmp(quirk->oui, ident->oui, sizeof(ident->oui)) != 0)
1242 memcmp(quirk->device_id, ident->device_id, sizeof(ident->device_id)) != 0)
1268 struct drm_dp_dpcd_ident *ident = &desc->ident;
1272 ret = drm_dp_dpcd_read(aux, offset, ident, sizeof(*ident));
1276 desc->quirks = drm_dp_get_quirks(ident, is_branch);
1278 dev_id_len = strnlen(ident->device_id, sizeof(ident->device_id));
1282 (int)sizeof(ident->oui), ident->oui,
1283 dev_id_len, ident->device_id,
1284 ident->hw_rev >> 4, ident->hw_rev & 0xf,
1285 ident->sw_major_rev, ident->sw_minor_rev,