aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/input
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/input')
-rw-r--r--include/linux/input/bu21013.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/linux/input/bu21013.h b/include/linux/input/bu21013.h
deleted file mode 100644
index 58b1a9d44443..000000000000
--- a/include/linux/input/bu21013.h
+++ /dev/null
@@ -1,30 +0,0 @@
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) ST-Ericsson SA 2010
4 * Author: Naveen Kumar G <naveen.gaddipati@stericsson.com> for ST-Ericsson
5 */
6
7#ifndef _BU21013_H
8#define _BU21013_H
9
10/**
11 * struct bu21013_platform_device - Handle the platform data
12 * @touch_x_max: touch x max
13 * @touch_y_max: touch y max
14 * @ext_clk: external clock flag
15 * @x_flip: x flip flag
16 * @y_flip: y flip flag
17 * @wakeup: wakeup flag
18 *
19 * This is used to handle the platform data
20 */
21struct bu21013_platform_device {
22 int touch_x_max;
23 int touch_y_max;
24 bool ext_clk;
25 bool x_flip;
26 bool y_flip;
27 bool wakeup;
28};
29
30#endif