kernel_samsung_a34x-permissive/drivers/input/touchscreen/mediatek/tpd_calibrate.h
2024-04-28 15:51:13 +02:00

25 lines
343 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2019 MediaTek Inc.
*/
#ifndef TPD_CALIBRATE_H
#define TPD_CALIBRATE_H
#ifdef TPD_HAVE_CALIBRATION
#ifndef TPD_CUSTOM_CALIBRATION
extern int tpd_calmat[8];
extern int tpd_def_calmat[8];
#endif
void tpd_calibrate(int *x, int *y);
#else
#define tpd_calibrate(x, y)
#endif
#endif