[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.63.1.el8_10.x86_64
/
include
/
linux
/
input
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ad714x.h
1,376 B
SET
[ EDIT ]
|
[ DEL ]
📄 adp5589.h
5,789 B
SET
[ EDIT ]
|
[ DEL ]
📄 adxl34x.h
11,580 B
SET
[ EDIT ]
|
[ DEL ]
📄 as5011.h
399 B
SET
[ EDIT ]
|
[ DEL ]
📄 auo-pixcir-ts.h
998 B
SET
[ EDIT ]
|
[ DEL ]
📄 bu21013.h
725 B
SET
[ EDIT ]
|
[ DEL ]
📄 cma3000.h
1,055 B
SET
[ EDIT ]
|
[ DEL ]
📄 cy8ctmg110_pdata.h
262 B
SET
[ EDIT ]
|
[ DEL ]
📄 cyttsp.h
959 B
SET
[ EDIT ]
|
[ DEL ]
📄 elan-i2c-ids.h
1,737 B
SET
[ EDIT ]
|
[ DEL ]
📄 gp2ap002a00f.h
671 B
SET
[ EDIT ]
|
[ DEL ]
📄 ili210x.h
207 B
SET
[ EDIT ]
|
[ DEL ]
📄 kxtj9.h
1,168 B
SET
[ EDIT ]
|
[ DEL ]
📄 lm8333.h
674 B
SET
[ EDIT ]
|
[ DEL ]
📄 matrix_keypad.h
3,026 B
SET
[ EDIT ]
|
[ DEL ]
📄 mt.h
3,455 B
SET
[ EDIT ]
|
[ DEL ]
📄 navpoint.h
244 B
SET
[ EDIT ]
|
[ DEL ]
📄 samsung-keypad.h
1,114 B
SET
[ EDIT ]
|
[ DEL ]
📄 sh_keysc.h
431 B
SET
[ EDIT ]
|
[ DEL ]
📄 sparse-keymap.h
1,968 B
SET
[ EDIT ]
|
[ DEL ]
📄 touchscreen.h
763 B
SET
[ EDIT ]
|
[ DEL ]
📄 tps6507x-ts.h
535 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: auo-pixcir-ts.h
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Driver for AUO in-cell touchscreens * * Copyright (c) 2011 Heiko Stuebner <heiko@sntech.de> * * based on auo_touch.h from Dell Streak kernel * * Copyright (c) 2008 QUALCOMM Incorporated. * Copyright (c) 2008 QUALCOMM USA, INC. */ #ifndef __AUO_PIXCIR_TS_H__ #define __AUO_PIXCIR_TS_H__ /* * Interrupt modes: * periodical: interrupt is asserted periodicaly * compare coordinates: interrupt is asserted when coordinates change * indicate touch: interrupt is asserted during touch */ #define AUO_PIXCIR_INT_PERIODICAL 0x00 #define AUO_PIXCIR_INT_COMP_COORD 0x01 #define AUO_PIXCIR_INT_TOUCH_IND 0x02 /* * @gpio_int interrupt gpio * @int_setting one of AUO_PIXCIR_INT_* * @init_hw hardwarespecific init * @exit_hw hardwarespecific shutdown * @x_max x-resolution * @y_max y-resolution */ struct auo_pixcir_ts_platdata { int gpio_int; int gpio_rst; int int_setting; unsigned int x_max; unsigned int y_max; }; #endif