https://github.com/torvalds/linux
Raw File
Tip revision: 36be50515fe2aef61533b516fa2576a2c7fe7664 authored by Linus Torvalds on 13 May 2012, 01:37:47 UTC
Linux 3.4-rc7
Tip revision: 36be505
edid.h
#ifndef __linux_video_edid_h__
#define __linux_video_edid_h__

struct edid_info {
	unsigned char dummy[128];
};

#ifdef __KERNEL__
#ifdef CONFIG_X86
extern struct edid_info edid_info;
#endif
#endif

#endif /* __linux_video_edid_h__ */
back to top