Lines Matching refs:flags
34 uint8_t flags; /* ver */
42 uint8_t flags[4]; /* cea_edid_ver, mnl,
53 #define ELD_VER(block) (((block)->header.flags >> 3) & 0x1f)
56 #define ELD_CEA_EDID_VER(block) (((block)->flags[0] >> 5) & 0x07)
61 #define ELD_MNL(block) (((block)->flags[0] >> 0) & 0x1f)
62 #define ELD_SAD_COUNT(block) (((block)->flags[1] >> 4) & 0x0f)
63 #define ELD_CONN_TYPE(block) (((block)->flags[1] >> 2) & 0x03)
65 #define ELD_S_AI(block) (((block)->flags[1] >> 1) & 0x01)
66 #define ELD_HDCP(block) (((block)->flags[1] >> 0) & 0x01)
67 #define ELD_AUDIO_DELAY(block) ((block)->flags[2])
71 #define ELD_SPEAKER(block) ((block)->flags[3])