diff options
author | Jag Raman <jag.raman@oracle.com> | 2017-08-15 23:02:57 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-16 06:33:50 +0200 |
commit | 55bd2133fc3c5ee138d19b76ed8f9495b35d57ec (patch) | |
tree | 8ef969b232f1dd4554dbfbf12a1c1cfa1de213d9 /drivers/tty/vcc.c | |
parent | Merge branch 'sparc64-M7-memcpy' (diff) | |
download | linux-55bd2133fc3c5ee138d19b76ed8f9495b35d57ec.tar.xz linux-55bd2133fc3c5ee138d19b76ed8f9495b35d57ec.zip |
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>
Diffstat (limited to 'drivers/tty/vcc.c')
-rw-r--r-- | drivers/tty/vcc.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/tty/vcc.c b/drivers/tty/vcc.c new file mode 100644 index 000000000000..e1b809927cd6 --- /dev/null +++ b/drivers/tty/vcc.c @@ -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); |