From: Russell King Date: Sun, 23 Oct 2016 10:24:22 +0000 (+0100) Subject: drm/i2c: tda998x: correct function name in comments X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=95a9b686d679059adf491ff116f936de63fcec29;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git drm/i2c: tda998x: correct function name in comments Correct two references to tda998x_connector_get_modes() which were incorrectly referring to tda998x_encoder_get_modes(). Tested-by: Robin Murphy Tested-by: Jon Medhurst Acked-by: Jon Medhurst Tested-by: Jyri Sarha Signed-off-by: Russell King --- diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c index f23c1a8d0e33..662ac93ccc19 100644 --- a/drivers/gpu/drm/i2c/tda998x_drv.c +++ b/drivers/gpu/drm/i2c/tda998x_drv.c @@ -581,9 +581,9 @@ tda998x_reset(struct tda998x_priv *priv) * HPD assertion: it needs a delay of 100ms to avoid timing out while * trying to read EDID data. * - * However, tda998x_encoder_get_modes() may be called at any moment + * However, tda998x_connector_get_modes() may be called at any moment * after tda998x_connector_detect() indicates that we are connected, so - * we need to delay probing modes in tda998x_encoder_get_modes() after + * we need to delay probing modes in tda998x_connector_get_modes() after * we have seen a HPD inactive->active transition. This code implements * that delay. */