Skip to content

Commit

Permalink
Merge branch 'fix-dss-mux' into fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Lindgren committed Mar 29, 2012
2 parents 335aece + e8a30b2 commit a2cb960
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/mach-omap2/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initdata = {
{ "dss_hdmi", "omapdss_hdmi", -1 },
};

static void omap4_hdmi_mux_pads(enum omap_hdmi_flags flags)
static void __init omap4_hdmi_mux_pads(enum omap_hdmi_flags flags)
{
u32 reg;
u16 control_i2c_1;
Expand All @@ -125,7 +125,7 @@ static void omap4_hdmi_mux_pads(enum omap_hdmi_flags flags)
}
}

static int __init omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
{
u32 enable_mask, enable_shift;
u32 pipd_mask, pipd_shift;
Expand Down Expand Up @@ -166,15 +166,15 @@ int __init omap_hdmi_init(enum omap_hdmi_flags flags)
return 0;
}

static int __init omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
{
if (cpu_is_omap44xx())
return omap4_dsi_mux_pads(dsi_id, lane_mask);

return 0;
}

static void __init omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
{
if (cpu_is_omap44xx())
omap4_dsi_mux_pads(dsi_id, 0);
Expand Down

0 comments on commit a2cb960

Please sign in to comment.