mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 19:06:39 +07:00
55bd2133fc
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>
19 lines
265 B
C
19 lines
265 B
C
/* 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);
|