blob: 763d6a8f11137848c30ade4300a44fd4e2c66f1d [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 *
5 * Copyright (c) 2008-2009, Code Aurora Forum. All rights reserved.
6 *
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