edid.h 235 B

123456789101112131415
  1. #ifndef __linux_video_edid_h__
  2. #define __linux_video_edid_h__
  3. struct edid_info {
  4. unsigned char dummy[128];
  5. };
  6. #ifdef __KERNEL__
  7. #ifdef CONFIG_X86
  8. extern struct edid_info edid_info;
  9. #endif
  10. #endif
  11. #endif /* __linux_video_edid_h__ */