#include <linux/module.h>
extern void call_me(const char* message) {
printk(KERN_INFO "test: %s", *(message) );
}
EXPORT_SYMBOL (call_me);
int init_module(void) {
const char msg[] = "Hello from my module!";
call_me(msg);
}
void cleanup_module(void) {
printk(KERN_INFO "my module off");
}
MODULE_LICENSE("GPL");