Browse Source

OMAPDSS: hdmi.h: Add members to hdmi drvdata for audio implementation

Adds display_enabled flag and audio_abort_cb callback to struct hdmi.

Signed-off-by: Jyri Sarha <jsarha@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Jyri Sarha 11 years ago
parent
commit
5872b35aaf
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/video/fbdev/omap2/dss/hdmi.h

+ 2 - 0
drivers/video/fbdev/omap2/dss/hdmi.h

@@ -351,10 +351,12 @@ struct omap_hdmi {
 	struct regulator *vdda_reg;
 
 	bool core_enabled;
+	bool display_enabled;
 
 	struct omap_dss_device output;
 
 	struct platform_device *audio_pdev;
+	void (*audio_abort_cb)(struct device *dev);
 };
 
 #endif