Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a5032df6
Commit
a5032df6
authored
Jul 11, 2002
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a driver for the Bitsy touchscreen.
parent
c986e19c
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
499 additions
and
0 deletions
+499
-0
drivers/input/touchscreen/Config.help
drivers/input/touchscreen/Config.help
+10
-0
drivers/input/touchscreen/Config.in
drivers/input/touchscreen/Config.in
+3
-0
drivers/input/touchscreen/Makefile
drivers/input/touchscreen/Makefile
+1
-0
drivers/input/touchscreen/h3600_ts_input.c
drivers/input/touchscreen/h3600_ts_input.c
+485
-0
No files found.
drivers/input/touchscreen/Config.help
View file @
a5032df6
...
@@ -14,3 +14,13 @@ CONFIG_TOUCHSCREEN_GUNZE
...
@@ -14,3 +14,13 @@ CONFIG_TOUCHSCREEN_GUNZE
inserted in and removed from the running kernel whenever you want).
inserted in and removed from the running kernel whenever you want).
The module will be called gunze.o. If you want to compile it as a
The module will be called gunze.o. If you want to compile it as a
module, say M here and read <file:Documentation/modules.txt>.
module, say M here and read <file:Documentation/modules.txt>.
CONFIG_TOUCHSCREEN_BITSY
Say Y here if you have the h3600 (Bitsy) touchscreen.
If unsure, say N.
This driver is also available as a module ( = code which can be
inserted in and removed from the running kernel whenever you want).
The module will be called gunze.o. If you want to compile it as a
module, say M here and read <file:Documentation/modules.txt>.
drivers/input/touchscreen/Config.in
View file @
a5032df6
...
@@ -4,4 +4,7 @@
...
@@ -4,4 +4,7 @@
bool 'Touchscreens' CONFIG_INPUT_TOUCHSCREEN
bool 'Touchscreens' CONFIG_INPUT_TOUCHSCREEN
if [ "$CONFIG_SA1100_BITSY" = "y" ]; then
dep_tristate ' Compaq iPAQ H3600 (Bitsy) touchscreen input driver' CONFIG_TOUCHSCREEN_BITSY $CONFIG_INPUT $CONFIG_INPUT_TOUCHSCREEN $CONFIG_SERIO
fi
dep_tristate ' Gunze AHL-51S touchscreen' CONFIG_TOUCHSCREEN_GUNZE $CONFIG_INPUT $CONFIG_INPUT_TOUCHSCREEN $CONFIG_SERIO
dep_tristate ' Gunze AHL-51S touchscreen' CONFIG_TOUCHSCREEN_GUNZE $CONFIG_INPUT $CONFIG_INPUT_TOUCHSCREEN $CONFIG_SERIO
drivers/input/touchscreen/Makefile
View file @
a5032df6
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
# Each configuration option enables a list of files.
# Each configuration option enables a list of files.
obj-$(CONFIG_TOUCHSCREEN_BITSY)
+=
h3600_ts_input.o
obj-$(CONFIG_TOUCHSCREEN_GUNZE)
+=
gunze.o
obj-$(CONFIG_TOUCHSCREEN_GUNZE)
+=
gunze.o
# The global Rules.make.
# The global Rules.make.
...
...
drivers/input/touchscreen/h3600_ts_input.c
0 → 100644
View file @
a5032df6
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment