edid.h 298 B

123456789101112131415161718
  1. #ifndef __linux_video_edid_h__
  2. #define __linux_video_edid_h__
  3. #ifdef __KERNEL__
  4. #include <linux/config.h>
  5. #ifdef CONFIG_X86
  6. struct edid_info {
  7. unsigned char dummy[128];
  8. };
  9. extern struct edid_info edid_info;
  10. #endif /* CONFIG_X86 */
  11. #endif /* __KERNEL__ */
  12. #endif /* __linux_video_edid_h__ */