[modifled-files] arch/arm/mach-rk30/board-rk30-phonepad.c drivers/input/touchscreen/Kconfig drivers/input/touchscreen/Makefile drivers/input/touchscreen/gt8110_ts.c drivers/video/display/screen/Kconfig drivers/video/display/screen/Makefile drivers/video/display/screen/lcd_hj101na.c include/linux/gt8110.h
30 lines
910 B
C
Executable file
30 lines
910 B
C
Executable file
/*
|
|
* Copyright (C) 2010 - 2011 Goodix, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef _LINUX_GOODIX_GT8110_TOUCH_H
|
|
#define _LINUX_GOODIX_GT8110_TOUCH_H
|
|
|
|
struct goodix_8110_platform_data {
|
|
uint32_t version; /* Use this entry for panels with */
|
|
int reset;
|
|
int irq_pin;
|
|
int power_control;
|
|
int mode_check_pin;
|
|
int (*hw_init) (void);
|
|
int (*hw_exit) (void);
|
|
};
|
|
|
|
#endif /* _LINUX_GOODIX_TOUCH_H */
|
|
|