1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright 2017 IBM Corp.
3 #include <linux/module.h>
5 #include "ocxl_internal.h"
7 static int __init
init_ocxl(void)
11 rc
= ocxl_file_init();
15 rc
= pci_register_driver(&ocxl_pci_driver
);
23 static void exit_ocxl(void)
25 pci_unregister_driver(&ocxl_pci_driver
);
29 module_init(init_ocxl
);
30 module_exit(exit_ocxl
);
32 MODULE_DESCRIPTION("Open Coherent Accelerator");
33 MODULE_LICENSE("GPL");