aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2021-05-06 20:57:05 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2021-05-07 18:34:18 +0200
commit767d724a160eb1cd00c86fb8c2e21fa1ab3c37ac (patch)
treec984683c58201a19c90d2b06b365723a49c07364 /drivers/video
parentdrm/vc4: hdmi: Signal the proper colorimetry info in the infoframe (diff)
downloadlinux-dev-767d724a160eb1cd00c86fb8c2e21fa1ab3c37ac.tar.xz
linux-dev-767d724a160eb1cd00c86fb8c2e21fa1ab3c37ac.zip
video: fbdev: imxfb: Fix an error message
'ret' is known to be 0 here. No error code is available, so just remove it from the error message. Fixes: 72330b0eeefc ("i.MX Framebuffer: Use readl/writel instead of direct pointer deref") Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/d7b25026f82659da3c6f7159eea480faa9d738be.1620327302.git.christophe.jaillet@wanadoo.fr
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/fbdev/imxfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/imxfb.c b/drivers/video/fbdev/imxfb.c
index 7f8debd2da06..ad598257ab38 100644
--- a/drivers/video/fbdev/imxfb.c
+++ b/drivers/video/fbdev/imxfb.c
@@ -992,7 +992,7 @@ static int imxfb_probe(struct platform_device *pdev)
info->screen_buffer = dma_alloc_wc(&pdev->dev, fbi->map_size,
&fbi->map_dma, GFP_KERNEL);
if (!info->screen_buffer) {
- dev_err(&pdev->dev, "Failed to allocate video RAM: %d\n", ret);
+ dev_err(&pdev->dev, "Failed to allocate video RAM\n");
ret = -ENOMEM;
goto failed_map;
}