aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fbdev/arcfb.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2021-07-21 11:26:08 +0100
committerSam Ravnborg <sam@ravnborg.org>2021-07-21 13:09:21 +0200
commit99279ad8feb9142ab03f9651c2401c1b3807857b (patch)
tree65896709f02e063c2e522125801668f2a7fdd277 /drivers/video/fbdev/arcfb.c
parentdrivers/firmware: consolidate EFI framebuffer setup for all arches (diff)
downloadlinux-dev-99279ad8feb9142ab03f9651c2401c1b3807857b.tar.xz
linux-dev-99279ad8feb9142ab03f9651c2401c1b3807857b.zip
video: fbdev: arcfb: remove redundant initialization of variable err
The variable err is being initialized with a value that is never read, the assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20210721102608.42694-1-colin.king@canonical.com
Diffstat (limited to 'drivers/video/fbdev/arcfb.c')
-rw-r--r--drivers/video/fbdev/arcfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/arcfb.c b/drivers/video/fbdev/arcfb.c
index 1447324ed0b6..45e64016db32 100644
--- a/drivers/video/fbdev/arcfb.c
+++ b/drivers/video/fbdev/arcfb.c
@@ -446,7 +446,7 @@ static ssize_t arcfb_write(struct fb_info *info, const char __user *buf,
/* modded from epson 1355 */
unsigned long p;
- int err=-EINVAL;
+ int err;
unsigned int fbmemlength,x,y,w,h, bitppos, startpos, endpos, bitcount;
struct arcfb_par *par;
unsigned int xres;