blob: cd895d4e003e22f270a3fdf355a0de01d10e1f97 [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* arch/arm/mach-msm/include/mach/msm_touch.h
2 *
3 * Platform data for MSM touchscreen driver.
4 *
Duy Truong790f06d2013-02-13 16:38:12 -08005 * Copyright (c) 2008-2009, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07006 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#ifndef _MACH_MSM_TOUCH_H_
18#define _MACH_MSM_TOUCH_H_
19
20struct msm_ts_platform_data {
21 unsigned int x_max;
22 unsigned int y_max;
23 unsigned int pressure_max;
24};
25
26#endif