edid.h 284 B

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