Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (32 commits) Input: wm97xx - update email address for Liam Girdwood Input: i8042 - add Thinkpad R31 to nomux list Input: move map_to_7segment.h to include/linux Input: ads7846 - fix cache line sharing issue Input: cm109 - add missing newlines to messages Input: document i8042.debug in kernel-parameters.txt Input: keyboard - fix potential out of bound access to key_map Input: psmouse - add OLPC touchpad driver Input: psmouse - tweak PSMOUSE_DEFINE_ATTR to support raw set callbacks Input: psmouse - add psmouse_queue_work() for ps/2 extension to make use of Input: psmouse - export psmouse_set_state for ps/2 extensions to use Input: ads7846 - introduce .gpio_pendown to get pendown state Input: ALPS - add signature for DualPoint found in Dell Latitude E6500 Input: serio_raw - allow attaching to translated (SERIO_I8042XL) ports Input: cm109 - don't use obsolete logging macros Input: atkbd - expand Latitude's force release quirk to other Dells Input: bf54x-keys - add power management support Input: atmel_tsadcc - improve accuracy Input: convert drivers to use strict_strtoul() Input: appletouch - handle geyser 3/4 status bits ...
This commit is contained in:
@@ -414,8 +414,7 @@ static struct gameport_driver a3d_drv = {
|
||||
|
||||
static int __init a3d_init(void)
|
||||
{
|
||||
gameport_register_driver(&a3d_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&a3d_drv);
|
||||
}
|
||||
|
||||
static void __exit a3d_exit(void)
|
||||
|
@@ -572,8 +572,7 @@ static struct gameport_driver adi_drv = {
|
||||
|
||||
static int __init adi_init(void)
|
||||
{
|
||||
gameport_register_driver(&adi_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&adi_drv);
|
||||
}
|
||||
|
||||
static void __exit adi_exit(void)
|
||||
|
@@ -761,9 +761,7 @@ static struct gameport_driver analog_drv = {
|
||||
static int __init analog_init(void)
|
||||
{
|
||||
analog_parse_options();
|
||||
gameport_register_driver(&analog_drv);
|
||||
|
||||
return 0;
|
||||
return gameport_register_driver(&analog_drv);
|
||||
}
|
||||
|
||||
static void __exit analog_exit(void)
|
||||
|
@@ -263,8 +263,7 @@ static struct gameport_driver cobra_drv = {
|
||||
|
||||
static int __init cobra_init(void)
|
||||
{
|
||||
gameport_register_driver(&cobra_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&cobra_drv);
|
||||
}
|
||||
|
||||
static void __exit cobra_exit(void)
|
||||
|
@@ -375,8 +375,7 @@ static struct gameport_driver gf2k_drv = {
|
||||
|
||||
static int __init gf2k_init(void)
|
||||
{
|
||||
gameport_register_driver(&gf2k_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&gf2k_drv);
|
||||
}
|
||||
|
||||
static void __exit gf2k_exit(void)
|
||||
|
@@ -426,8 +426,7 @@ static struct gameport_driver grip_drv = {
|
||||
|
||||
static int __init grip_init(void)
|
||||
{
|
||||
gameport_register_driver(&grip_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&grip_drv);
|
||||
}
|
||||
|
||||
static void __exit grip_exit(void)
|
||||
|
@@ -689,8 +689,7 @@ static struct gameport_driver grip_drv = {
|
||||
|
||||
static int __init grip_init(void)
|
||||
{
|
||||
gameport_register_driver(&grip_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&grip_drv);
|
||||
}
|
||||
|
||||
static void __exit grip_exit(void)
|
||||
|
@@ -283,8 +283,7 @@ static struct gameport_driver guillemot_drv = {
|
||||
|
||||
static int __init guillemot_init(void)
|
||||
{
|
||||
gameport_register_driver(&guillemot_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&guillemot_drv);
|
||||
}
|
||||
|
||||
static void __exit guillemot_exit(void)
|
||||
|
@@ -317,8 +317,7 @@ static struct gameport_driver interact_drv = {
|
||||
|
||||
static int __init interact_init(void)
|
||||
{
|
||||
gameport_register_driver(&interact_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&interact_drv);
|
||||
}
|
||||
|
||||
static void __exit interact_exit(void)
|
||||
|
@@ -161,8 +161,7 @@ static struct gameport_driver joydump_drv = {
|
||||
|
||||
static int __init joydump_init(void)
|
||||
{
|
||||
gameport_register_driver(&joydump_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&joydump_drv);
|
||||
}
|
||||
|
||||
static void __exit joydump_exit(void)
|
||||
|
@@ -818,8 +818,7 @@ static struct gameport_driver sw_drv = {
|
||||
|
||||
static int __init sw_init(void)
|
||||
{
|
||||
gameport_register_driver(&sw_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&sw_drv);
|
||||
}
|
||||
|
||||
static void __exit sw_exit(void)
|
||||
|
@@ -438,8 +438,7 @@ static struct gameport_driver tmdc_drv = {
|
||||
|
||||
static int __init tmdc_init(void)
|
||||
{
|
||||
gameport_register_driver(&tmdc_drv);
|
||||
return 0;
|
||||
return gameport_register_driver(&tmdc_drv);
|
||||
}
|
||||
|
||||
static void __exit tmdc_exit(void)
|
||||
|
Reference in New Issue
Block a user