-
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.
yaml --- r: 24115 b: refs/heads/master c: 0a34eb8 h: refs/heads/master i: 24113: feb7fcb 24111: 6dec2bd v: v3
- Loading branch information
Hansjoerg Lipp
authored and
Linus Torvalds
committed
Mar 26, 2006
1 parent
bf77dcc
commit ace555a
Showing
6 changed files
with
60 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b67000962f35313cfc5eabd675dc38b91678d9ed | ||
refs/heads/master: 0a34eb8f55a71678c379b47c25f562050c80efcc |
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
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,42 @@ | ||
menu "Siemens Gigaset" | ||
depends on ISDN_I4L | ||
|
||
config ISDN_DRV_GIGASET | ||
tristate "Siemens Gigaset support (isdn)" | ||
depends on ISDN_I4L && m | ||
# depends on ISDN_I4L && MODULES | ||
help | ||
Say m here if you have a Gigaset or Sinus isdn device. | ||
|
||
if ISDN_DRV_GIGASET!=n | ||
|
||
config GIGASET_BASE | ||
tristate "Gigaset base station support" | ||
depends on ISDN_DRV_GIGASET && USB | ||
help | ||
Say m here if you need to communicate with the base | ||
directly via USB. | ||
|
||
config GIGASET_M105 | ||
tristate "Gigaset M105 support" | ||
depends on ISDN_DRV_GIGASET && USB | ||
help | ||
Say m here if you need the driver for the Gigaset M105 device. | ||
|
||
config GIGASET_DEBUG | ||
bool "Gigaset debugging" | ||
help | ||
This enables debugging code in the Gigaset drivers. | ||
If in doubt, say yes. | ||
|
||
config GIGASET_UNDOCREQ | ||
bool "Support for undocumented USB requests" | ||
help | ||
This enables support for USB requests we only know from | ||
reverse engineering (currently M105 only). If you need | ||
features like configuration mode of M105, say yes. If you | ||
care about your device, say no. | ||
|
||
endif | ||
|
||
endmenu |
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,6 @@ | ||
gigaset-y := common.o interface.o proc.o ev-layer.o i4l.o | ||
usb_gigaset-y := usb-gigaset.o asyncdata.o | ||
bas_gigaset-y := bas-gigaset.o isocdata.o | ||
|
||
obj-$(CONFIG_GIGASET_M105) += usb_gigaset.o gigaset.o | ||
obj-$(CONFIG_GIGASET_BASE) += bas_gigaset.o gigaset.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 |
---|---|---|
|
@@ -139,3 +139,4 @@ source "drivers/isdn/hysdn/Kconfig" | |
|
||
endmenu | ||
|
||
source "drivers/isdn/gigaset/Kconfig" |