edid.h 473 B

123456789101112131415161718192021222324252627
  1. #ifndef __linux_video_edid_h__
  2. #define __linux_video_edid_h__
  3. #ifdef __KERNEL__
  4. #include <linux/config.h>
  5. #ifdef CONFIG_PPC_OF
  6. #include <linux/pci.h>
  7. #endif
  8. #ifdef CONFIG_X86
  9. struct edid_info {
  10. unsigned char dummy[128];
  11. };
  12. extern struct edid_info edid_info;
  13. extern char *get_EDID_from_BIOS(void *);
  14. #endif /* CONFIG_X86 */
  15. #ifdef CONFIG_PPC_OF
  16. extern char *get_EDID_from_OF(struct pci_dev *pdev);
  17. #endif
  18. #endif /* __KERNEL__ */
  19. #endif /* __linux_video_edid_h__ */