]> git.baikalelectronics.ru Git - kernel.git/commit
hvc_console: display printk messages on console.
authorMiche Baker-Harvey <miche@google.com>
Wed, 5 Oct 2011 17:48:51 +0000 (10:48 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 18 Oct 2011 21:17:10 +0000 (14:17 -0700)
commitf359a7cbf89ef1e4ee6e3a2d5adf9e240775007f
tree5ad067d69e9f3d765c4a28dc75b1a89fdfca494c
parent4eaa50d612fa47b09dc7e5c8985b55bdf48033f5
hvc_console: display printk messages on console.

printk only works for "registered consoles."  Currently, the hvc_console
code calls register_console() from hvc_instantiate(), but that's only
used in the early console case.  In hvc_alloc(), register_console() was
not called.

Add a call to register_console() in hvc_alloc(), set up the index in
the hvc_console, and set up the necessary vtermnos[] and cons_op[]
entries so that printk functions work.

Signed-off-by: Miche Baker-Harvey <miche@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/tty/hvc/hvc_console.c