[ 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.56.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: cma3000.h
/* SPDX-License-Identifier: GPL-2.0-only */ /* * VTI CMA3000_Dxx Accelerometer driver * * Copyright (C) 2010 Texas Instruments * Author: Hemanth V <hemanthv@ti.com> */ #ifndef _LINUX_CMA3000_H #define _LINUX_CMA3000_H #define CMAMODE_DEFAULT 0 #define CMAMODE_MEAS100 1 #define CMAMODE_MEAS400 2 #define CMAMODE_MEAS40 3 #define CMAMODE_MOTDET 4 #define CMAMODE_FF100 5 #define CMAMODE_FF400 6 #define CMAMODE_POFF 7 #define CMARANGE_2G 2000 #define CMARANGE_8G 8000 /** * struct cma3000_i2c_platform_data - CMA3000 Platform data * @fuzz_x: Noise on X Axis * @fuzz_y: Noise on Y Axis * @fuzz_z: Noise on Z Axis * @g_range: G range in milli g i.e 2000 or 8000 * @mode: Operating mode * @mdthr: Motion detect threshold value * @mdfftmr: Motion detect and free fall time value * @ffthr: Free fall threshold value */ struct cma3000_platform_data { int fuzz_x; int fuzz_y; int fuzz_z; int g_range; uint8_t mode; uint8_t mdthr; uint8_t mdfftmr; uint8_t ffthr; unsigned long irqflags; }; #endif