diff options
author | Jiri Slaby <jslaby@suse.cz> | 2020-02-19 08:39:50 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-06 08:35:40 +0100 |
commit | 6ff66e081374655a70d04a0e77e8a58f3a6b6f59 (patch) | |
tree | 822059dd4eedbdf60acf1b50bd0f1cf1fe9a3bd6 /drivers/tty/vt/selection.c | |
parent | a10df4910cdbce3c606846467c7e6fc2e469951d (diff) |
vt: selection, remove redeclaration of poke_blanked_console
It is declared in vt_kern.h, so no need to declare it in selection.c
which includes the header.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20200219073951.16151-8-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/vt/selection.c')
-rw-r--r-- | drivers/tty/vt/selection.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/vt/selection.c b/drivers/tty/vt/selection.c index 0cd7072b6a56..eaf11729ef9e 100644 --- a/drivers/tty/vt/selection.c +++ b/drivers/tty/vt/selection.c @@ -35,8 +35,6 @@ /* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */ #define isspace(c) ((c) == ' ') -extern void poke_blanked_console(void); - /* FIXME: all this needs locking */ static struct vc_selection { struct mutex lock; |