Commit bf8cb314 authored by Anssi Hannula's avatar Anssi Hannula Committed by Dmitry Torokhov

Input: xpad - drop obsolete driver versioning

The driver version numbers and changelog have not been updated in a
long while to reflect actual changes. Remove the version number and
add a notice that later changes can be tracked in SCM.
Signed-off-by: default avatarAnssi Hannula <anssi.hannula@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent cfbe2010
/* /*
* X-Box gamepad - v0.0.6 * X-Box gamepad driver
* *
* Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de> * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
* 2004 Oliver Schwartz <Oliver.Schwartz@gmx.de>, * 2004 Oliver Schwartz <Oliver.Schwartz@gmx.de>,
...@@ -68,6 +68,8 @@ ...@@ -68,6 +68,8 @@
* - dance pads will map D-PAD to buttons, not axes * - dance pads will map D-PAD to buttons, not axes
* - pass the module paramater 'dpad_to_buttons' to force * - pass the module paramater 'dpad_to_buttons' to force
* the D-PAD to map to buttons if your pad is not detected * the D-PAD to map to buttons if your pad is not detected
*
* Later changes can be tracked in SCM.
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -77,7 +79,6 @@ ...@@ -77,7 +79,6 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/usb/input.h> #include <linux/usb/input.h>
#define DRIVER_VERSION "v0.0.6"
#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>" #define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
#define DRIVER_DESC "X-Box pad driver" #define DRIVER_DESC "X-Box pad driver"
...@@ -771,7 +772,7 @@ static int __init usb_xpad_init(void) ...@@ -771,7 +772,7 @@ static int __init usb_xpad_init(void)
{ {
int result = usb_register(&xpad_driver); int result = usb_register(&xpad_driver);
if (result == 0) if (result == 0)
info(DRIVER_DESC ":" DRIVER_VERSION); info(DRIVER_DESC);
return result; return result;
} }
......
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