26f14d6b5d
Use EDID when available to configure the frame buffer driver with good settings for the attached display. Change-Id: I69a78155a93e55ffa1ca3ff6621a879a56cdbceb
12 lines
420 B
C
12 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 */
|