xfree86: ddc: move struct cea_ext_body into interpret_edid.c

It's only used there, so no need to keep it in public header.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-27 15:42:56 +01:00
committed by Enrico Weigelt
parent ac141cd1cc
commit fa09ad5a61
2 changed files with 8 additions and 8 deletions

View File

@@ -606,12 +606,4 @@ struct cea_data_block {
} u;
};
struct cea_ext_body {
uint8_t tag;
uint8_t rev;
uint8_t dt_offset;
uint8_t flags;
struct cea_data_block data_collection;
};
#endif /* _EDID_H_ */

View File

@@ -37,6 +37,14 @@
#define _PARSE_EDID_
#include "xf86DDC_priv.h"
struct cea_ext_body {
uint8_t tag;
uint8_t rev;
uint8_t dt_offset;
uint8_t flags;
struct cea_data_block data_collection;
};
static void get_vendor_section(uint8_t *, struct vendor *);
static void get_version_section(uint8_t *, struct edid_version *);
static void get_display_section(uint8_t *, struct disp_features *,