summaryrefslogtreecommitdiff
path: root/linux_driver/jvdg_usbgadget.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux_driver/jvdg_usbgadget.c')
-rw-r--r--linux_driver/jvdg_usbgadget.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/linux_driver/jvdg_usbgadget.c b/linux_driver/jvdg_usbgadget.c
index ea7af57..6aad80d 100644
--- a/linux_driver/jvdg_usbgadget.c
+++ b/linux_driver/jvdg_usbgadget.c
@@ -1,23 +1,21 @@
/*
* jvdg_usbgadget driver as kernel module - sysfs interface
*
- * Copyright (C) 2010 Julien Viard de Galbert
+ * Copyright (C) 2011 Julien Viard de Galbert
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, version 2.
*
* written using those tutorials as support:
- * - http://linuxdevcenter.com/pub/a/linux/2007/07/05/devhelloworld-a-simple-introduction-to-device-drivers-under-linux.html
- * - http://www.linuxjournal.com/article/7353
+ * - http://linuxdevcenter.com/pub/a/linux/2007/07/05/devhelloworld-a-simple-introduction-to-device-drivers-under-linux.html by Valerie Henson
+ * - http://www.linuxjournal.com/article/7353 by Greg Kroah-Hartman
*/
#define DEBUG
-//#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
-//#include <linux/slab.h>
#include <linux/module.h>
#include <linux/usb.h>
@@ -263,5 +261,5 @@ module_init (jvdg_usbg_init);
module_exit (jvdg_usbg_exit);
MODULE_AUTHOR("Julien Viard de Galbert <julien@silicone.homelinux.org>");
-MODULE_DESCRIPTION("jvdg USBGadget Driver");
+MODULE_DESCRIPTION("JVdG USB Gadget Driver");
MODULE_LICENSE("GPL");