xref: /openbmc/linux/include/video/edid.h (revision 87c2ce3b)
1 #ifndef __linux_video_edid_h__
2 #define __linux_video_edid_h__
3 
4 #ifdef __KERNEL__
5 
6 #include <linux/config.h>
7 
8 #ifdef CONFIG_X86
9 struct edid_info {
10 	unsigned char dummy[128];
11 };
12 
13 extern struct edid_info edid_info;
14 #endif /* CONFIG_X86 */
15 
16 #endif /* __KERNEL__ */
17 
18 #endif /* __linux_video_edid_h__ */
19