mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
drm/bridge: adv7511: Rename adv7511_dsi_config_timing_gen() into adv7533_dsi_config_timing_gen()
To preserve the drivers naming convention rename adv7511_dsi_config_timing_gen() into adv7533_dsi_config_timing_gen() Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com> Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Link: https://lore.kernel.org/r/20250528070452.901183-3-tommaso.merciai.xr@bp.renesas.com Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
This commit is contained in:
parent
1f5090c4ae
commit
6e76b312a6
|
|
@ -415,6 +415,7 @@ int adv7511_cec_irq_process(struct adv7511 *adv7511, unsigned int irq1);
|
|||
|
||||
void adv7533_dsi_power_on(struct adv7511 *adv);
|
||||
void adv7533_dsi_power_off(struct adv7511 *adv);
|
||||
void adv7533_dsi_config_timing_gen(struct adv7511 *adv);
|
||||
enum drm_mode_status adv7533_mode_valid(struct adv7511 *adv,
|
||||
const struct drm_display_mode *mode);
|
||||
int adv7533_patch_registers(struct adv7511 *adv);
|
||||
|
|
@ -422,8 +423,6 @@ int adv7533_patch_cec_registers(struct adv7511 *adv);
|
|||
int adv7533_attach_dsi(struct adv7511 *adv);
|
||||
int adv7533_parse_dt(struct device_node *np, struct adv7511 *adv);
|
||||
|
||||
void adv7511_dsi_config_timing_gen(struct adv7511 *adv);
|
||||
|
||||
#ifdef CONFIG_DRM_I2C_ADV7511_AUDIO
|
||||
int adv7511_hdmi_audio_startup(struct drm_connector *connector,
|
||||
struct drm_bridge *bridge);
|
||||
|
|
|
|||
|
|
@ -740,7 +740,7 @@ static void adv7511_mode_set(struct adv7511 *adv7511,
|
|||
|
||||
/* Update horizontal/vertical porch params */
|
||||
if (adv7511->info->has_dsi && adv7511->use_timing_gen)
|
||||
adv7511_dsi_config_timing_gen(adv7511);
|
||||
adv7533_dsi_config_timing_gen(adv7511);
|
||||
|
||||
/*
|
||||
* TODO Test first order 4:2:2 to 4:4:4 up conversion method, which is
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ static const struct reg_sequence adv7533_cec_fixed_registers[] = {
|
|||
{ 0x05, 0xc8 },
|
||||
};
|
||||
|
||||
void adv7511_dsi_config_timing_gen(struct adv7511 *adv)
|
||||
void adv7533_dsi_config_timing_gen(struct adv7511 *adv)
|
||||
{
|
||||
struct mipi_dsi_device *dsi = adv->dsi;
|
||||
struct drm_display_mode *mode = &adv->curr_mode;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user