Commit 55bd2133 authored by Jag Raman's avatar Jag Raman Committed by David S. Miller

sparc64: vcc: Enable VCC module in linux

Enables the Virtual Console Concentrator (VCC) module
in linux kernel
Signed-off-by: default avatarJagannathan Raman <jag.raman@oracle.com>
Reviewed-by: default avatarLiam Merwick <liam.merwick@oracle.com>
Reviewed-by: default avatarShannon Nelson <shannon.nelson@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fa5dc772
...@@ -12294,6 +12294,7 @@ F: drivers/tty/serial/sunsab.h ...@@ -12294,6 +12294,7 @@ F: drivers/tty/serial/sunsab.h
F: drivers/tty/serial/sunsu.c F: drivers/tty/serial/sunsu.c
F: drivers/tty/serial/sunzilog.c F: drivers/tty/serial/sunzilog.c
F: drivers/tty/serial/sunzilog.h F: drivers/tty/serial/sunzilog.h
F: drivers/tty/vcc.c
SPARSE CHECKER SPARSE CHECKER
M: "Christopher Li" <sparse@chrisli.org> M: "Christopher Li" <sparse@chrisli.org>
......
...@@ -238,3 +238,4 @@ CONFIG_CRYPTO_TWOFISH=m ...@@ -238,3 +238,4 @@ CONFIG_CRYPTO_TWOFISH=m
# CONFIG_CRYPTO_ANSI_CPRNG is not set # CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRC16=m CONFIG_CRC16=m
CONFIG_LIBCRC32C=m CONFIG_LIBCRC32C=m
CONFIG_VCC=m
...@@ -455,4 +455,9 @@ config MIPS_EJTAG_FDC_KGDB_CHAN ...@@ -455,4 +455,9 @@ config MIPS_EJTAG_FDC_KGDB_CHAN
help help
FDC channel number to use for KGDB. FDC channel number to use for KGDB.
config VCC
tristate "Sun Virtual Console Concentrator"
depends on SUN_LDOMS
help
Support for Sun logical domain consoles.
endif # TTY endif # TTY
...@@ -33,5 +33,6 @@ obj-$(CONFIG_PPC_EPAPR_HV_BYTECHAN) += ehv_bytechan.o ...@@ -33,5 +33,6 @@ obj-$(CONFIG_PPC_EPAPR_HV_BYTECHAN) += ehv_bytechan.o
obj-$(CONFIG_GOLDFISH_TTY) += goldfish.o obj-$(CONFIG_GOLDFISH_TTY) += goldfish.o
obj-$(CONFIG_DA_TTY) += metag_da.o obj-$(CONFIG_DA_TTY) += metag_da.o
obj-$(CONFIG_MIPS_EJTAG_FDC_TTY) += mips_ejtag_fdc.o obj-$(CONFIG_MIPS_EJTAG_FDC_TTY) += mips_ejtag_fdc.o
obj-$(CONFIG_VCC) += vcc.o
obj-y += ipwireless/ obj-y += ipwireless/
/* vcc.c: sun4v virtual channel concentrator
*
* Copyright (C) 2017 Oracle. All rights reserved.
*/
#include <linux/module.h>
static int __init vcc_init(void)
{
return 0;
}
static void __exit vcc_exit(void)
{
}
module_init(vcc_init);
module_exit(vcc_exit);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment