mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 16:12:59 +02:00
drm/bridge: anx7625: fix an error code in anx7625_register_audio()
This code accidentally returns IS_ERR(), which is 1, instead of
propagating the negative error code. The caller doesn't check for
errors so it doesn't affect run time at all.
Fixes: 566fef1226 ("drm/bridge: anx7625: add HDMI audio function")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Tzung-Bi Shih <tzungbi@google.com>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20211124145219.GD13656@kili
This commit is contained in:
parent
0bae5687bc
commit
83ddd8069f
|
|
@ -1636,7 +1636,7 @@ static int anx7625_register_audio(struct device *dev, struct anx7625_data *ctx)
|
|||
sizeof(codec_data));
|
||||
|
||||
if (IS_ERR(ctx->audio_pdev))
|
||||
return IS_ERR(ctx->audio_pdev);
|
||||
return PTR_ERR(ctx->audio_pdev);
|
||||
|
||||
DRM_DEV_DEBUG_DRIVER(dev, "bound to %s", HDMI_CODEC_DRV_NAME);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user