/* get touch info */
char *get_touch_info(void)
{
	char *touch_info = NULL;

	touch_info = get_synaptics_touch_info();
	if (touch_info != NULL)
		return touch_info;

	touch_info = get_melfas_touch_info();
	if (touch_info != NULL)
		return touch_info;

	return NULL;
}
예제 #2
0
/* get touch info */
char *get_touch_info(void)
{
	char *touch_info = NULL;

	touch_info = get_synaptics_touch_info();
	if (touch_info != NULL)
		return touch_info;

/*	touch_info = get_melfas_touch_info();
	if (touch_info != NULL)
		return touch_info;
*/

	/* < DTS2012070604482 fengzhiqiang 20120712 begin */
    touch_info = get_atmel_touch_info();
	if (touch_info != NULL)
		return touch_info;
    /* DTS2012070604482  fengzhiqiang 20120712 end > */

	return NULL;
}