mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 07:04:00 +08:00
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);
|