mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
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:
committed by
Enrico Weigelt
parent
ac141cd1cc
commit
fa09ad5a61
@@ -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_ */
|
||||
|
||||
@@ -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 *,
|
||||
|
||||
Reference in New Issue
Block a user