diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-08-25 14:10:41 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 13:16:44 (GMT) |
commit | 3d5e0ef746c13f8a26d0150f5dfd4f9b738a5130 (patch) | |
tree | 20ce576139ff8907ce408eebdf4d207fc361c5f1 | |
parent | 3870c909f2fc880dece633772f2551aa70d26979 (diff) | |
download | linux-3d5e0ef746c13f8a26d0150f5dfd4f9b738a5130.tar.xz |
OMAP: DSS2: add read_edid() to omap_dss_driver struct
read_edid() can be used to get the EDID information from the display.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | include/video/omapdss.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 583c624..33410b4 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -622,6 +622,8 @@ struct omap_dss_driver { int (*set_wss)(struct omap_dss_device *dssdev, u32 wss); u32 (*get_wss)(struct omap_dss_device *dssdev); + + int (*read_edid)(struct omap_dss_device *dssdev, u8 *buf, int len); }; int omap_dss_register_driver(struct omap_dss_driver *); |