mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-15 06:00:41 +00:00
51df0acc3d
Commit 728674a7e466628df2aeec6d11a2ae1ef968fb67 moved virtio_console.c to drivers/tty/hvc/ under the perception of this being an hvc driver. It was such once, but these days it has generic communication capabilities as well, so move it to drivers/char/. In the future, the hvc part from this file can be split off and moved under drivers/tty/hvc/. Signed-off-by: Amit Shah <amit.shah@redhat.com> CC: Rusty Russell <rusty@rustcorp.com.au> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
13 lines
459 B
Makefile
13 lines
459 B
Makefile
obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o
|
|
obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o
|
|
obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o
|
|
obj-$(CONFIG_HVC_TILE) += hvc_tile.o
|
|
obj-$(CONFIG_HVC_DCC) += hvc_dcc.o
|
|
obj-$(CONFIG_HVC_BEAT) += hvc_beat.o
|
|
obj-$(CONFIG_HVC_DRIVER) += hvc_console.o
|
|
obj-$(CONFIG_HVC_IRQ) += hvc_irq.o
|
|
obj-$(CONFIG_HVC_XEN) += hvc_xen.o
|
|
obj-$(CONFIG_HVC_IUCV) += hvc_iucv.o
|
|
obj-$(CONFIG_HVC_UDBG) += hvc_udbg.o
|
|
obj-$(CONFIG_HVCS) += hvcs.o
|