diff --git a/hello-world.c b/hello-world.c
index 8ca2dc6..9c22cde 100644
--- a/hello-world.c
+++ b/hello-world.c
@@ -7,27 +7,26 @@
  *
  *
  */
-#include <linux/init.h>
 #include <linux/module.h>
 
 
 /* See module.h for additional #defines you may want to customize*/
 MODULE_LICENSE("Dual MIT/GPL"); /* See module.h for acceptable options */
-MODULE_AUTHOR("Homer Simpson");
+MODULE_AUTHOR("Mark Asselstine");
 MODULE_DESCRIPTION("A hello-world kernel module");
 MODULE_VERSION("0.1");
 
 /* Initialize the module, called when first loaded */
 static int __init hello_world_init(void) {
   /* print "Hello World" to the dmesg on module load */
-  printk(KERN_INFO "Hello World\n");
+  printk(KERN_INFO "Hello World from " __FILE__ "\n");
 
   return 0;
 }
 
 /* Last call before module unload, complete any cleanup */
 static void __exit hello_world_exit(void) {
-  /* print "Goodby World" to the dmesg on module unload */
+  /* print "Goodbye World" to the dmesg on module unload */
   printk(KERN_INFO "Goodbye World\n");
 }
 
