diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-10-04 11:27:06 +0300 |
---|---|---|
committer | Philippe Cornu <philippe.cornu@foss.st.com> | 2022-04-07 11:51:11 +0300 |
commit | 15431b110cc5984967646384ea1d47999c677ce3 (patch) | |
tree | 1c0087ecd968d48dedb77a8f05ad805581e7f7c4 /drivers/gpu/drm/sti | |
parent | 25d4cb51d6cde1229edb42f24a215f3ef8325393 (diff) | |
download | linux-15431b110cc5984967646384ea1d47999c677ce3.tar.xz |
drm: sti: fix spelling mistake: rejec -> rejection
In other places of the driver the string hdmi_rejection_pll is
used instead of the truncated hdmi_rejec_pll, so use this string
instead to be consistent.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Philippe Cornu <philippe.cornu@foss.st.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191004082706.26478-1-colin.king@canonical.com
Diffstat (limited to 'drivers/gpu/drm/sti')
-rw-r--r-- | drivers/gpu/drm/sti/sti_hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sti/sti_hdmi.c b/drivers/gpu/drm/sti/sti_hdmi.c index 78e099c8e805..b3fbee7eac11 100644 --- a/drivers/gpu/drm/sti/sti_hdmi.c +++ b/drivers/gpu/drm/sti/sti_hdmi.c @@ -892,7 +892,7 @@ static void sti_hdmi_pre_enable(struct drm_bridge *bridge) if (clk_prepare_enable(hdmi->clk_tmds)) DRM_ERROR("Failed to prepare/enable hdmi_tmds clk\n"); if (clk_prepare_enable(hdmi->clk_phy)) - DRM_ERROR("Failed to prepare/enable hdmi_rejec_pll clk\n"); + DRM_ERROR("Failed to prepare/enable hdmi_rejection_pll clk\n"); hdmi->enabled = true; |