-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tty: move hvc drivers to drivers/tty/hvc/
As requested by Arnd Bergmann, the hvc drivers are now moved to the drivers/tty/hvc/ directory. The virtio_console.c driver was also moved, as it required the hvc_console.h file to be able to be built, and it really is a hvc driver. Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Greg Kroah-Hartman
committed
Jan 13, 2011
1 parent
e691d24
commit 728674a
Showing
18 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ obj-$(CONFIG_N_GSM) += n_gsm.o | |
obj-$(CONFIG_R3964) += n_r3964.o | ||
|
||
obj-y += vt/ | ||
obj-$(CONFIG_HVC_DRIVER) += hvc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
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 | ||
obj-$(CONFIG_VIRTIO_CONSOLE) += virtio_console.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.