sparc64: vcc: Enable VCC module in linux

Enables the Virtual Console Concentrator (VCC) module
in linux kernel

Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Reviewed-by: Liam Merwick <liam.merwick@oracle.com>
Reviewed-by: Shannon Nelson <shannon.nelson@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jag Raman
2017-08-15 17:02:57 -04:00
committed by David S. Miller
parent fa5dc772e3
commit 55bd2133fc
5 changed files with 26 additions and 0 deletions

18
drivers/tty/vcc.c Normal file
View File

@@ -0,0 +1,18 @@
/* 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);