Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.17 18 lines 298 B view raw
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 9struct edid_info { 10 unsigned char dummy[128]; 11}; 12 13extern struct edid_info edid_info; 14#endif /* CONFIG_X86 */ 15 16#endif /* __KERNEL__ */ 17 18#endif /* __linux_video_edid_h__ */