diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2011-08-27 09:43:54 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2011-08-27 10:06:11 -0400 |
commit | 7b1bb388bc879ffcc6c69b567816d5c354afe42b (patch) | |
tree | 5a217fdfb0b5e5a327bdcd624506337c1ae1fe32 /include/linux/input/bu21013.h | |
parent | 7d754596756240fa918b94cd0c3011c77a638987 (diff) | |
parent | 02f8c6aee8df3cdc935e9bdd4f2d020306035dbe (diff) |
Merge 'Linux v3.0' into Litmus
Some notes:
* Litmus^RT scheduling class is the topmost scheduling class
(above stop_sched_class).
* scheduler_ipi() function (e.g., in smp_reschedule_interrupt())
may increase IPI latencies.
* Added path into schedule() to quickly re-evaluate scheduling
decision without becoming preemptive again. This used to be
a standard path before the removal of BKL.
Conflicts:
Makefile
arch/arm/kernel/calls.S
arch/arm/kernel/smp.c
arch/x86/include/asm/unistd_32.h
arch/x86/kernel/smp.c
arch/x86/kernel/syscall_table_32.S
include/linux/hrtimer.h
kernel/printk.c
kernel/sched.c
kernel/sched_fair.c
Diffstat (limited to 'include/linux/input/bu21013.h')
-rw-r--r-- | include/linux/input/bu21013.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/linux/input/bu21013.h b/include/linux/input/bu21013.h new file mode 100644 index 000000000000..05e03284b92a --- /dev/null +++ b/include/linux/input/bu21013.h | |||
@@ -0,0 +1,40 @@ | |||
1 | /* | ||
2 | * Copyright (C) ST-Ericsson SA 2010 | ||
3 | * Author: Naveen Kumar G <naveen.gaddipati@stericsson.com> for ST-Ericsson | ||
4 | * License terms:GNU General Public License (GPL) version 2 | ||
5 | */ | ||
6 | |||
7 | #ifndef _BU21013_H | ||
8 | #define _BU21013_H | ||
9 | |||
10 | /** | ||
11 | * struct bu21013_platform_device - Handle the platform data | ||
12 | * @cs_en: pointer to the cs enable function | ||
13 | * @cs_dis: pointer to the cs disable function | ||
14 | * @irq_read_val: pointer to read the pen irq value function | ||
15 | * @touch_x_max: touch x max | ||
16 | * @touch_y_max: touch y max | ||
17 | * @cs_pin: chip select pin | ||
18 | * @irq: irq pin | ||
19 | * @ext_clk: external clock flag | ||
20 | * @x_flip: x flip flag | ||
21 | * @y_flip: y flip flag | ||
22 | * @wakeup: wakeup flag | ||
23 | * | ||
24 | * This is used to handle the platform data | ||
25 | */ | ||
26 | struct bu21013_platform_device { | ||
27 | int (*cs_en)(int reset_pin); | ||
28 | int (*cs_dis)(int reset_pin); | ||
29 | int (*irq_read_val)(void); | ||
30 | int touch_x_max; | ||
31 | int touch_y_max; | ||
32 | unsigned int cs_pin; | ||
33 | unsigned int irq; | ||
34 | bool ext_clk; | ||
35 | bool x_flip; | ||
36 | bool y_flip; | ||
37 | bool wakeup; | ||
38 | }; | ||
39 | |||
40 | #endif | ||