/* * stop.c - Illustration of multi filed modules */ #include /* We are doing kernel work */ #include /* Specifically, a module */ void cleanup_module(void) { pr_info("Short is the life of a kernel module\n"); } MODULE_LICENSE("GPL");