-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Input: eeti_ts - allow active high irq lines
This adds a struct eeti_ts_platform_data which currently holds only one value to specify the interrupt polarity. The driver has a fallback if no platform data is passed in via the i2c_board_info, so no regression is caused. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
- Loading branch information
Daniel Mack
authored and
Dmitry Torokhov
committed
Aug 12, 2009
1 parent
09113ae
commit 25a70e3
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#ifndef LINUX_INPUT_EETI_TS_H | ||
#define LINUX_INPUT_EETI_TS_H | ||
|
||
struct eeti_ts_platform_data { | ||
unsigned int irq_active_high; | ||
}; | ||
|
||
#endif /* LINUX_INPUT_EETI_TS_H */ | ||
|