mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
vt: Fix build breakage when !CONFIG_VT_CONSOLE
Commit 68952076e9
("vt: Remove
vt_get_kmsg_redirect() from uapi header") fails to compile if
!CONFIG_VT_CONSOLE.
Move macro definition for vt_get_kmsg_redirect() up with file-scope
function declarations.
Reported-by: Jim Davis <jim.epost@gmail.com>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e4c787dac2
commit
52c40fca1a
1 changed files with 2 additions and 2 deletions
|
@ -156,6 +156,8 @@ static void console_callback(struct work_struct *ignored);
|
||||||
static void blank_screen_t(unsigned long dummy);
|
static void blank_screen_t(unsigned long dummy);
|
||||||
static void set_palette(struct vc_data *vc);
|
static void set_palette(struct vc_data *vc);
|
||||||
|
|
||||||
|
#define vt_get_kmsg_redirect() vt_kmsg_redirect(-1)
|
||||||
|
|
||||||
static int printable; /* Is console ready for printing? */
|
static int printable; /* Is console ready for printing? */
|
||||||
int default_utf8 = true;
|
int default_utf8 = true;
|
||||||
module_param(default_utf8, int, S_IRUGO | S_IWUSR);
|
module_param(default_utf8, int, S_IRUGO | S_IWUSR);
|
||||||
|
@ -2513,8 +2515,6 @@ int vt_kmsg_redirect(int new)
|
||||||
return kmsg_con;
|
return kmsg_con;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define vt_get_kmsg_redirect() vt_kmsg_redirect(-1)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Console on virtual terminal
|
* Console on virtual terminal
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue