blob: e1b809927cd6bd8fa0208cc8df2567dbd90d1e08 [file] [log] [blame]
Jag Raman55bd2132017-08-15 17:02:57 -04001/* vcc.c: sun4v virtual channel concentrator
2 *
3 * Copyright (C) 2017 Oracle. All rights reserved.
4 */
5
6#include <linux/module.h>
7
8static int __init vcc_init(void)
9{
10 return 0;
11}
12
13static void __exit vcc_exit(void)
14{
15}
16
17module_init(vcc_init);
18module_exit(vcc_exit);