-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from StollD/kconfig
Improvements for building in-tree
- Loading branch information
Showing
3 changed files
with
15 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
obj-m := ithc.o | ||
obj-$(CONFIG_HID_ITHC) := ithc.o | ||
|
||
ithc-objs := ithc-main.o ithc-regs.o ithc-dma.o ithc-debug.o | ||
|
||
|
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,12 @@ | ||
config HID_ITHC | ||
tristate "Intel Touch Host Controller" | ||
depends on PCI | ||
depends on HID | ||
help | ||
Say Y here if your system has a touchscreen using Intels | ||
Touch Host Controller (ITHC / IPTS) technology. | ||
|
||
If unsure say N. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called ithc. |