mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 13:57:27 +07:00
drm/omap: convert dss_mgr_set_timings to accept omap_channel
We are removing uses of 'struct omap_overlay_manager'. This patch changes dss_mgr_set_timings() to accept 'enum omap_channel' instead of 'struct omap_overlay_manager'. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
bdac3bb946
commit
5c6ff3cd45
@ -359,7 +359,7 @@ static int dpi_set_mode(struct dpi_data *dpi)
|
||||
t->pixelclock = pck;
|
||||
}
|
||||
|
||||
dss_mgr_set_timings(mgr, t);
|
||||
dss_mgr_set_timings(mgr->id, t);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -3980,7 +3980,7 @@ static void dsi_update_screen_dispc(struct platform_device *dsidev)
|
||||
msecs_to_jiffies(250));
|
||||
BUG_ON(r == 0);
|
||||
|
||||
dss_mgr_set_timings(mgr, &dsi->timings);
|
||||
dss_mgr_set_timings(mgr->id, &dsi->timings);
|
||||
|
||||
dss_mgr_start_update(mgr);
|
||||
|
||||
@ -4140,7 +4140,7 @@ static int dsi_display_init_dispc(struct platform_device *dsidev,
|
||||
dsi->timings.de_level = OMAPDSS_SIG_ACTIVE_HIGH;
|
||||
dsi->timings.sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE;
|
||||
|
||||
dss_mgr_set_timings(mgr, &dsi->timings);
|
||||
dss_mgr_set_timings(mgr->id, &dsi->timings);
|
||||
|
||||
r = dsi_configure_dispc_clocks(dsidev);
|
||||
if (r)
|
||||
|
@ -217,7 +217,7 @@ static int hdmi_power_on_full(struct omap_dss_device *dssdev)
|
||||
dispc_enable_gamma_table(0);
|
||||
|
||||
/* tv size */
|
||||
dss_mgr_set_timings(mgr, p);
|
||||
dss_mgr_set_timings(mgr->id, p);
|
||||
|
||||
r = dss_mgr_enable(mgr);
|
||||
if (r)
|
||||
|
@ -234,7 +234,7 @@ static int hdmi_power_on_full(struct omap_dss_device *dssdev)
|
||||
dispc_enable_gamma_table(0);
|
||||
|
||||
/* tv size */
|
||||
dss_mgr_set_timings(mgr, p);
|
||||
dss_mgr_set_timings(mgr->id, p);
|
||||
|
||||
r = dss_mgr_enable(mgr);
|
||||
if (r)
|
||||
|
@ -86,7 +86,7 @@ int dss_mgr_connect(enum omap_channel channel,
|
||||
struct omap_dss_device *dst);
|
||||
void dss_mgr_disconnect(enum omap_channel channel,
|
||||
struct omap_dss_device *dst);
|
||||
void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
|
||||
void dss_mgr_set_timings(enum omap_channel channel,
|
||||
const struct omap_video_timings *timings);
|
||||
void dss_mgr_set_lcd_config(struct omap_overlay_manager *mgr,
|
||||
const struct dss_lcd_mgr_config *config);
|
||||
|
@ -202,10 +202,10 @@ void dss_mgr_disconnect(enum omap_channel channel,
|
||||
}
|
||||
EXPORT_SYMBOL(dss_mgr_disconnect);
|
||||
|
||||
void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
|
||||
void dss_mgr_set_timings(enum omap_channel channel,
|
||||
const struct omap_video_timings *timings)
|
||||
{
|
||||
dss_mgr_ops->set_timings(mgr->id, timings);
|
||||
dss_mgr_ops->set_timings(channel, timings);
|
||||
}
|
||||
EXPORT_SYMBOL(dss_mgr_set_timings);
|
||||
|
||||
|
@ -169,7 +169,7 @@ static int sdi_display_enable(struct omap_dss_device *dssdev)
|
||||
}
|
||||
|
||||
|
||||
dss_mgr_set_timings(out->manager, t);
|
||||
dss_mgr_set_timings(out->manager->id, t);
|
||||
|
||||
r = dss_set_fck_rate(fck);
|
||||
if (r)
|
||||
|
@ -469,7 +469,7 @@ static int venc_power_on(struct omap_dss_device *dssdev)
|
||||
|
||||
venc_write_reg(VENC_OUTPUT_CONTROL, l);
|
||||
|
||||
dss_mgr_set_timings(mgr, &venc.timings);
|
||||
dss_mgr_set_timings(mgr->id, &venc.timings);
|
||||
|
||||
r = regulator_enable(venc.vdda_dac_reg);
|
||||
if (r)
|
||||
|
Loading…
Reference in New Issue
Block a user