[ 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: ad714x.h
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * include/linux/input/ad714x.h * * AD714x is very flexible, it can be used as buttons, scrollwheel, * slider, touchpad at the same time. That depends on the boards. * The platform_data for the device's "struct device" holds this * information. * * Copyright 2009-2011 Analog Devices Inc. */ #ifndef __LINUX_INPUT_AD714X_H__ #define __LINUX_INPUT_AD714X_H__ #define STAGE_NUM 12 #define STAGE_CFGREG_NUM 8 #define SYS_CFGREG_NUM 8 /* board information which need be initialized in arch/mach... */ struct ad714x_slider_plat { int start_stage; int end_stage; int max_coord; }; struct ad714x_wheel_plat { int start_stage; int end_stage; int max_coord; }; struct ad714x_touchpad_plat { int x_start_stage; int x_end_stage; int x_max_coord; int y_start_stage; int y_end_stage; int y_max_coord; }; struct ad714x_button_plat { int keycode; unsigned short l_mask; unsigned short h_mask; }; struct ad714x_platform_data { int slider_num; int wheel_num; int touchpad_num; int button_num; struct ad714x_slider_plat *slider; struct ad714x_wheel_plat *wheel; struct ad714x_touchpad_plat *touchpad; struct ad714x_button_plat *button; unsigned short stage_cfg_reg[STAGE_NUM][STAGE_CFGREG_NUM]; unsigned short sys_cfg_reg[SYS_CFGREG_NUM]; unsigned long irqflags; }; #endif