1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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);