mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
xfree86: ddc: move struct cea_vendor_block(_hdmi) to private header
Not used by any external driver, so no need to keep them in public header. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
5a34d6c738
commit
1a9d075b9a
@@ -226,26 +226,4 @@ struct cea_audio_block {
|
||||
struct cea_audio_block_descriptor descriptor[10];
|
||||
};
|
||||
|
||||
struct cea_vendor_block_hdmi {
|
||||
uint8_t portB:4;
|
||||
uint8_t portA:4;
|
||||
uint8_t portD:4;
|
||||
uint8_t portC:4;
|
||||
uint8_t support_flags;
|
||||
uint8_t max_tmds_clock;
|
||||
uint8_t latency_present;
|
||||
uint8_t video_latency;
|
||||
uint8_t audio_latency;
|
||||
uint8_t interlaced_video_latency;
|
||||
uint8_t interlaced_audio_latency;
|
||||
};
|
||||
|
||||
struct cea_vendor_block {
|
||||
unsigned char ieee_id[3];
|
||||
union {
|
||||
struct cea_vendor_block_hdmi hdmi;
|
||||
/* any other vendor blocks we know about */
|
||||
};
|
||||
};
|
||||
|
||||
#endif /* _EDID_H_ */
|
||||
|
||||
@@ -296,6 +296,28 @@ struct cea_speaker_block {
|
||||
uint8_t ResvByte;
|
||||
};
|
||||
|
||||
struct cea_vendor_block_hdmi {
|
||||
uint8_t portB:4;
|
||||
uint8_t portA:4;
|
||||
uint8_t portD:4;
|
||||
uint8_t portC:4;
|
||||
uint8_t support_flags;
|
||||
uint8_t max_tmds_clock;
|
||||
uint8_t latency_present;
|
||||
uint8_t video_latency;
|
||||
uint8_t audio_latency;
|
||||
uint8_t interlaced_video_latency;
|
||||
uint8_t interlaced_audio_latency;
|
||||
};
|
||||
|
||||
struct cea_vendor_block {
|
||||
unsigned char ieee_id[3];
|
||||
union {
|
||||
struct cea_vendor_block_hdmi hdmi;
|
||||
/* any other vendor blocks we know about */
|
||||
};
|
||||
};
|
||||
|
||||
struct cea_data_block {
|
||||
uint8_t len:5;
|
||||
uint8_t tag:3;
|
||||
|
||||
Reference in New Issue
Block a user