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: Input: bcm5974 - set BUTTONPAD property Input: serio_raw - return proper result when serio_raw_write fails Input: serio_raw - really signal HUP upon disconnect Input: serio_raw - remove stray semicolon Input: revert some over-zealous conversions to module_platform_driver()
This commit is contained in:
@@ -429,7 +429,18 @@ static struct platform_driver atmel_wm97xx_driver = {
|
||||
.suspend = atmel_wm97xx_suspend,
|
||||
.resume = atmel_wm97xx_resume,
|
||||
};
|
||||
module_platform_driver(atmel_wm97xx_driver);
|
||||
|
||||
static int __init atmel_wm97xx_init(void)
|
||||
{
|
||||
return platform_driver_probe(&atmel_wm97xx_driver, atmel_wm97xx_probe);
|
||||
}
|
||||
module_init(atmel_wm97xx_init);
|
||||
|
||||
static void __exit atmel_wm97xx_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&atmel_wm97xx_driver);
|
||||
}
|
||||
module_exit(atmel_wm97xx_exit);
|
||||
|
||||
MODULE_AUTHOR("Hans-Christian Egtvedt <egtvedt@samfundet.no>");
|
||||
MODULE_DESCRIPTION("wm97xx continuous touch driver for Atmel AT91 and AVR32");
|
||||
|
@@ -240,7 +240,18 @@ static struct platform_driver mc13783_ts_driver = {
|
||||
.name = MC13783_TS_NAME,
|
||||
},
|
||||
};
|
||||
module_platform_driver(mc13783_ts_driver);
|
||||
|
||||
static int __init mc13783_ts_init(void)
|
||||
{
|
||||
return platform_driver_probe(&mc13783_ts_driver, &mc13783_ts_probe);
|
||||
}
|
||||
module_init(mc13783_ts_init);
|
||||
|
||||
static void __exit mc13783_ts_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mc13783_ts_driver);
|
||||
}
|
||||
module_exit(mc13783_ts_exit);
|
||||
|
||||
MODULE_DESCRIPTION("MC13783 input touchscreen driver");
|
||||
MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
|
||||
|
Reference in New Issue
Block a user