diff options
author | Jiri Slaby (SUSE) <jirislaby@kernel.org> | 2023-07-12 11:59:37 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2023-07-20 08:43:11 +0300 |
commit | 6ceed69cde8fe4a78fe50d62d7a88a5c1eed4709 (patch) | |
tree | 534216ed753ff55804fca66181a41d6c8b8fe562 /drivers/video | |
parent | 03b89a08484a88fb9e0604cab2b3eb0c2f265c74 (diff) | |
download | linux-6ceed69cde8fe4a78fe50d62d7a88a5c1eed4709.tar.xz |
vgacon: remove unneeded forward declarations
Most of the forward declarations in vgacon are not needed. Drop them.
Signed-off-by: "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: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/console/vgacon.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/video/console/vgacon.c b/drivers/video/console/vgacon.c index fbed2862c317..a34cdfcc10c2 100644 --- a/drivers/video/console/vgacon.c +++ b/drivers/video/console/vgacon.c @@ -65,16 +65,8 @@ static struct vgastate vgastate; * Interface used by the world */ -static const char *vgacon_startup(void); -static void vgacon_init(struct vc_data *c, int init); -static void vgacon_deinit(struct vc_data *c); -static void vgacon_cursor(struct vc_data *c, int mode); -static int vgacon_switch(struct vc_data *c); -static int vgacon_blank(struct vc_data *c, int blank, int mode_switch); -static void vgacon_scrolldelta(struct vc_data *c, int lines); static int vgacon_set_origin(struct vc_data *c); -static void vgacon_save_screen(struct vc_data *c); -static void vgacon_invert_region(struct vc_data *c, u16 * p, int count); + static struct uni_pagedict *vgacon_uni_pagedir; static int vgacon_refcount; |