Message ID | 1406821730-15226-3-git-send-email-sviau@codeaurora.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
Am 31.07.2014 17:48, schrieb Stephane Viau: > From: Beeresh Gopal <gbeeresh@codeaurora.org> > > 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> Thanks, Andreas
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi_connector.c b/drivers/gpu/drm/msm/hdmi/hdmi_connector.c index 113c0f8..8004082 100644 --- a/drivers/gpu/drm/msm/hdmi/hdmi_connector.c +++ b/drivers/gpu/drm/msm/hdmi/hdmi_connector.c @@ -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);