88pm860x-ts.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) | 88pm860x-ts.c (cdcc96e261909eccf596c070116c8b906a42b328) |
---|---|
1/* 2 * Touchscreen driver for Marvell 88PM860x 3 * 4 * Copyright (C) 2009 Marvell International Ltd. 5 * Haojian Zhuang <haojian.zhuang@marvell.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 203 unchanged lines hidden (view full) --- 212static struct platform_driver pm860x_touch_driver = { 213 .driver = { 214 .name = "88pm860x-touch", 215 .owner = THIS_MODULE, 216 }, 217 .probe = pm860x_touch_probe, 218 .remove = __devexit_p(pm860x_touch_remove), 219}; | 1/* 2 * Touchscreen driver for Marvell 88PM860x 3 * 4 * Copyright (C) 2009 Marvell International Ltd. 5 * Haojian Zhuang <haojian.zhuang@marvell.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as --- 203 unchanged lines hidden (view full) --- 212static struct platform_driver pm860x_touch_driver = { 213 .driver = { 214 .name = "88pm860x-touch", 215 .owner = THIS_MODULE, 216 }, 217 .probe = pm860x_touch_probe, 218 .remove = __devexit_p(pm860x_touch_remove), 219}; |
220module_platform_driver(pm860x_touch_driver); |
|
220 | 221 |
221static int __init pm860x_touch_init(void) 222{ 223 return platform_driver_register(&pm860x_touch_driver); 224} 225module_init(pm860x_touch_init); 226 227static void __exit pm860x_touch_exit(void) 228{ 229 platform_driver_unregister(&pm860x_touch_driver); 230} 231module_exit(pm860x_touch_exit); 232 | |
233MODULE_DESCRIPTION("Touchscreen driver for Marvell Semiconductor 88PM860x"); 234MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>"); 235MODULE_LICENSE("GPL"); 236MODULE_ALIAS("platform:88pm860x-touch"); 237 | 222MODULE_DESCRIPTION("Touchscreen driver for Marvell Semiconductor 88PM860x"); 223MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>"); 224MODULE_LICENSE("GPL"); 225MODULE_ALIAS("platform:88pm860x-touch"); 226 |