drivers/tty/hvc: don't free hvc_console_setup after init
authorTomoki Sekiyama <tomoki.sekiyama@hds.com>
Fri, 2 May 2014 22:58:24 +0000 (18:58 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 May 2014 11:32:46 +0000 (13:32 +0200)
commite7f46ff2cf7ef0b710166d43738859d1d3cedf22
tree2b5f62715b06d7397589f63230138051e18b25d1
parent774e1e67ef51e643e0415baddcbd26f4d44e3270
drivers/tty/hvc: don't free hvc_console_setup after init

commit 501fed45b7e8836ee9373f4d31e2d85e3db6103a upstream.

When 'console=hvc0' is specified to the kernel parameter in x86 KVM guest,
hvc console is setup within a kthread. However, that will cause SEGV
and the boot will fail when the driver is builtin to the kernel,
because currently hvc_console_setup() is annotated with '__init'. This
patch removes '__init' to boot the guest successfully with 'console=hvc0'.

Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/hvc/hvc_console.c