From 1a9d075b9a591a23b344cb4073c90f2f48051b59 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 29 Jan 2026 10:51:42 +0100 Subject: [PATCH] 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 --- hw/xfree86/ddc/edid.h | 22 ---------------------- hw/xfree86/ddc/edid_priv.h | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/hw/xfree86/ddc/edid.h b/hw/xfree86/ddc/edid.h index dbc99b5d42..e4b8e829dd 100644 --- a/hw/xfree86/ddc/edid.h +++ b/hw/xfree86/ddc/edid.h @@ -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_ */ diff --git a/hw/xfree86/ddc/edid_priv.h b/hw/xfree86/ddc/edid_priv.h index 1b7ffe3282..3d36c97163 100644 --- a/hw/xfree86/ddc/edid_priv.h +++ b/hw/xfree86/ddc/edid_priv.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;