Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/imx: dw_hdmi-imx: remove empty encoder_disable callback

This has not been required since commit 75229eca569f ("drm: Make
drm_encoder_helper_funcs optional").

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>

-5
-5
drivers/gpu/drm/imx/dw_hdmi-imx.c
··· 111 111 return 0; 112 112 } 113 113 114 - static void dw_hdmi_imx_encoder_disable(struct drm_encoder *encoder) 115 - { 116 - } 117 - 118 114 static void dw_hdmi_imx_encoder_enable(struct drm_encoder *encoder) 119 115 { 120 116 struct imx_hdmi *hdmi = enc_to_imx_hdmi(encoder); ··· 136 140 137 141 static const struct drm_encoder_helper_funcs dw_hdmi_imx_encoder_helper_funcs = { 138 142 .enable = dw_hdmi_imx_encoder_enable, 139 - .disable = dw_hdmi_imx_encoder_disable, 140 143 .atomic_check = dw_hdmi_imx_atomic_check, 141 144 }; 142 145