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