blob: 02bf6ea317015ccda1be465c88ea87230db17dc2 [file] [log] [blame]
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07001/*
Iiro Valkonen7686b102011-02-02 23:21:58 -08002 * Atmel maXTouch Touchscreen driver
Joonyoung Shim4cf51c32010-07-14 21:55:30 -07003 *
4 * Copyright (C) 2010 Samsung Electronics Co.Ltd
5 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
12
Iiro Valkonen7686b102011-02-02 23:21:58 -080013#ifndef __LINUX_ATMEL_MXT_TS_H
14#define __LINUX_ATMEL_MXT_TS_H
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070015
Iiro Valkonen71749f52011-02-15 13:36:52 -080016#include <linux/types.h>
17
Iiro Valkonen7686b102011-02-02 23:21:58 -080018/* The platform data for the Atmel maXTouch touchscreen driver */
19struct mxt_platform_data {
Iiro Valkonen919ed892011-02-15 13:36:52 -080020 unsigned long irqflags;
Nick Dyerfb5e4c3e2014-05-18 23:00:15 -070021 u8 t19_num_keys;
22 const unsigned int *t19_keymap;
Joonyoung Shim4cf51c32010-07-14 21:55:30 -070023};
24
Iiro Valkonen7686b102011-02-02 23:21:58 -080025#endif /* __LINUX_ATMEL_MXT_TS_H */