Commit 1f749d8d authored by Stefan Achatz's avatar Stefan Achatz Committed by Jiri Kosina

HID: roccat: cleanup preprocessor macros

Removed useless preprocessor macros and renamed remaining one to be
more qualified.
Signed-off-by: default avatarStefan Achatz <erazor_de@users.sourceforge.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 48e70804
...@@ -630,7 +630,7 @@ static ssize_t kone_sysfs_set_startup_profile(struct device *dev, ...@@ -630,7 +630,7 @@ static ssize_t kone_sysfs_set_startup_profile(struct device *dev,
static ssize_t kone_sysfs_show_driver_version(struct device *dev, static ssize_t kone_sysfs_show_driver_version(struct device *dev,
struct device_attribute *attr, char *buf) struct device_attribute *attr, char *buf)
{ {
return snprintf(buf, PAGE_SIZE, DRIVER_VERSION "\n"); return snprintf(buf, PAGE_SIZE, ROCCAT_KONE_DRIVER_VERSION "\n");
} }
/* /*
...@@ -989,6 +989,6 @@ static void __exit kone_exit(void) ...@@ -989,6 +989,6 @@ static void __exit kone_exit(void)
module_init(kone_init); module_init(kone_init);
module_exit(kone_exit); module_exit(kone_exit);
MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_AUTHOR("Stefan Achatz");
MODULE_DESCRIPTION(DRIVER_DESC); MODULE_DESCRIPTION("USB Roccat Kone driver");
MODULE_LICENSE(DRIVER_LICENSE); MODULE_LICENSE("GPL v2");
...@@ -14,10 +14,7 @@ ...@@ -14,10 +14,7 @@
#include <linux/types.h> #include <linux/types.h>
#define DRIVER_VERSION "v0.3.0" #define ROCCAT_KONE_DRIVER_VERSION "v0.3.1"
#define DRIVER_AUTHOR "Stefan Achatz"
#define DRIVER_DESC "USB Roccat Kone driver"
#define DRIVER_LICENSE "GPL v2"
#pragma pack(push) #pragma pack(push)
#pragma pack(1) #pragma pack(1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment