You've already forked android_kernel_samsung_ot8
mirror of
https://github.com/gta7lite/android_kernel_samsung_ot8.git
synced 2026-02-08 17:24:41 -08:00
27 lines
456 B
C
27 lines
456 B
C
/*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _TOUCHSCREEN_INFO_H_
|
|
#define _TOUCHSCREEN_INFO_H_
|
|
|
|
enum tp_module_used {
|
|
UNKNOWN_TP,
|
|
HIMAX,
|
|
Himax,
|
|
Ilitek,
|
|
ILITEK_ILI7807S,
|
|
CHIPONE,
|
|
JADARD_JD9365T,
|
|
Novatek,
|
|
Focaltech,
|
|
GALAXYCORE,
|
|
};
|
|
|
|
//enum tp_module_used tp_is_used = UNKNOWN_TP;
|
|
|
|
#endif
|