summaryrefslogtreecommitdiff
path: root/linux_driver
diff options
context:
space:
mode:
authorJulien Viard de Galbert <julien@vdg.blogsite.org>2011-01-14 23:29:45 +0100
committerJulien Viard de Galbert <julien@vdg.blogsite.org>2011-01-14 23:29:45 +0100
commitd1691c37217989bc04bcf586b59d3f599f461cd9 (patch)
tree9bb860ba8b4d364ee026185fc116cc274f1a68d1 /linux_driver
parent090843455fb49e1509e33c5d1c9cc9cbf2937b13 (diff)
Licence information and README ;)HEADmaster
Diffstat (limited to 'linux_driver')
-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");