]> git.karo-electronics.de Git - linux-beck.git/commitdiff
OMAP: DSS2: Add missing dummy functions
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Sat, 30 Apr 2011 12:38:15 +0000 (15:38 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Thu, 12 May 2011 16:39:48 +0000 (19:39 +0300)
dpi.c does not compile if DSI is not compiled in. Add the missing dummy
functions so that dpi.c compiles.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/dss.h

index 3e6dbd544dc0f44bf7895e3468b3a98bbbcf95fb..ef193750e3c29e3e11b431765a71ef68538d5f45 100644 (file)
@@ -322,6 +322,30 @@ static inline unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device
        WARN("%s: DSI not compiled in, returning rate as 0\n", __func__);
        return 0;
 }
+static inline int dsi_pll_set_clock_div(struct platform_device *dsidev,
+               struct dsi_clock_info *cinfo)
+{
+       WARN("%s: DSI not compiled in\n", __func__);
+       return -ENODEV;
+}
+static inline int dsi_pll_calc_clock_div_pck(struct platform_device *dsidev,
+               bool is_tft, unsigned long req_pck,
+               struct dsi_clock_info *dsi_cinfo,
+               struct dispc_clock_info *dispc_cinfo)
+{
+       WARN("%s: DSI not compiled in\n", __func__);
+       return -ENODEV;
+}
+static inline int dsi_pll_init(struct platform_device *dsidev,
+               bool enable_hsclk, bool enable_hsdiv)
+{
+       WARN("%s: DSI not compiled in\n", __func__);
+       return -ENODEV;
+}
+static inline void dsi_pll_uninit(struct platform_device *dsidev,
+               bool disconnect_lanes)
+{
+}
 static inline void dsi_wait_pll_hsdiv_dispc_active(struct platform_device *dsidev)
 {
 }