minix/drivers/fb/fb_edid.h
Thomas Cort 26f14d6b5d fb: auto-configure with EDID
Use EDID when available to configure the frame buffer driver with
good settings for the attached display.

Change-Id: I69a78155a93e55ffa1ca3ff6621a879a56cdbceb
2013-08-11 20:37:16 +02:00

13 lines
420 B
C

#ifndef __EDID_H
#define __EDID_H
#include <stdint.h>
#include <dev/videomode/videomode.h>
#include <dev/videomode/edidvar.h>
#include <dev/videomode/edidreg.h>
int fb_edid_args_parse(void);
int fb_edid_read(int minor, struct edid_info *info);
#endif /* __EDID_H */