Commit 93686f6b authored by Jiri Slaby (SUSE)'s avatar Jiri Slaby (SUSE) Committed by Helge Deller

vgacon: let vgacon_doresize() return void

The return value is neither used, nor vgacon_doresize() returns an
error. So change the reurn type to void.
Signed-off-by: default avatar"Jiri Slaby (SUSE)" <jirislaby@kernel.org>
Cc: Helge Deller <deller@gmx.de>
Cc: linux-fbdev@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent c900dc68
...@@ -528,7 +528,7 @@ static void vgacon_cursor(struct vc_data *c, int mode) ...@@ -528,7 +528,7 @@ static void vgacon_cursor(struct vc_data *c, int mode)
} }
} }
static int vgacon_doresize(struct vc_data *c, static void vgacon_doresize(struct vc_data *c,
unsigned int width, unsigned int height) unsigned int width, unsigned int height)
{ {
unsigned long flags; unsigned long flags;
...@@ -587,7 +587,6 @@ static int vgacon_doresize(struct vc_data *c, ...@@ -587,7 +587,6 @@ static int vgacon_doresize(struct vc_data *c,
} }
raw_spin_unlock_irqrestore(&vga_lock, flags); raw_spin_unlock_irqrestore(&vga_lock, flags);
return 0;
} }
static int vgacon_switch(struct vc_data *c) static int vgacon_switch(struct vc_data *c)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment