diff options
-rw-r--r-- | drivers/hid/hid-roccat-kone.c | 8 | ||||
-rw-r--r-- | drivers/hid/hid-roccat-kone.h | 5 |
2 files changed, 5 insertions, 8 deletions
diff --git a/drivers/hid/hid-roccat-kone.c b/drivers/hid/hid-roccat-kone.c index 8f35fe22f419..66e694054ba2 100644 --- a/drivers/hid/hid-roccat-kone.c +++ b/drivers/hid/hid-roccat-kone.c | |||
@@ -630,7 +630,7 @@ static ssize_t kone_sysfs_set_startup_profile(struct device *dev, | |||
630 | static ssize_t kone_sysfs_show_driver_version(struct device *dev, | 630 | static ssize_t kone_sysfs_show_driver_version(struct device *dev, |
631 | struct device_attribute *attr, char *buf) | 631 | struct device_attribute *attr, char *buf) |
632 | { | 632 | { |
633 | return snprintf(buf, PAGE_SIZE, DRIVER_VERSION "\n"); | 633 | return snprintf(buf, PAGE_SIZE, ROCCAT_KONE_DRIVER_VERSION "\n"); |
634 | } | 634 | } |
635 | 635 | ||
636 | /* | 636 | /* |
@@ -989,6 +989,6 @@ static void __exit kone_exit(void) | |||
989 | module_init(kone_init); | 989 | module_init(kone_init); |
990 | module_exit(kone_exit); | 990 | module_exit(kone_exit); |
991 | 991 | ||
992 | MODULE_AUTHOR(DRIVER_AUTHOR); | 992 | MODULE_AUTHOR("Stefan Achatz"); |
993 | MODULE_DESCRIPTION(DRIVER_DESC); | 993 | MODULE_DESCRIPTION("USB Roccat Kone driver"); |
994 | MODULE_LICENSE(DRIVER_LICENSE); | 994 | MODULE_LICENSE("GPL v2"); |
diff --git a/drivers/hid/hid-roccat-kone.h b/drivers/hid/hid-roccat-kone.h index 13309544b6fa..b413b10a7f8a 100644 --- a/drivers/hid/hid-roccat-kone.h +++ b/drivers/hid/hid-roccat-kone.h | |||
@@ -14,10 +14,7 @@ | |||
14 | 14 | ||
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | 16 | ||
17 | #define DRIVER_VERSION "v0.3.0" | 17 | #define ROCCAT_KONE_DRIVER_VERSION "v0.3.1" |
18 | #define DRIVER_AUTHOR "Stefan Achatz" | ||
19 | #define DRIVER_DESC "USB Roccat Kone driver" | ||
20 | #define DRIVER_LICENSE "GPL v2" | ||
21 | 18 | ||
22 | #pragma pack(push) | 19 | #pragma pack(push) |
23 | #pragma pack(1) | 20 | #pragma pack(1) |