mirror of https://gitee.com/openkylin/linux.git
drm/msm/hdmi: fix HDMI_MUX_EN gpio request typo
HDMI_MUX_EN gpio is requested. If an error occurs, the same name should be printed (HDMI_MUX_EN) instead of HDMI_MUX_SEL (typo). Signed-off-by: Beeresh Gopal <gbeeresh@codeaurora.org> Signed-off-by: Stephane Viau <sviau@codeaurora.org> Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
1930f38a5d
commit
a2fe6cdc03
|
@ -63,7 +63,7 @@ static int gpio_config(struct hdmi *hdmi, bool on)
|
|||
ret = gpio_request(config->mux_en_gpio, "HDMI_MUX_EN");
|
||||
if (ret) {
|
||||
dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
|
||||
"HDMI_MUX_SEL", config->mux_en_gpio, ret);
|
||||
"HDMI_MUX_EN", config->mux_en_gpio, ret);
|
||||
goto error4;
|
||||
}
|
||||
gpio_set_value_cansleep(config->mux_en_gpio, 1);
|
||||
|
|
Loading…
Reference in New Issue