diff options
author | Tilman Schmidt <tilman@imap.cc> | 2009-10-06 08:19:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-07 01:43:51 -0400 |
commit | aaba2b3f8213e1d66e71c351fa7a2b1cbd974d3c (patch) | |
tree | 024458582d76d07647e2b5da45534c903508b334 /drivers/isdn/gigaset/Kconfig | |
parent | 088ec0cc96e2befd5f3c035123f95c17bdf26e64 (diff) |
gigaset: allow building without I4L
Add a dummy LL interface to the Gigaset driver so that it can be
built and, in a limited way, used without the ISDN4Linux subsystem.
Impact: new configuration alternative
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/gigaset/Kconfig')
-rw-r--r-- | drivers/isdn/gigaset/Kconfig | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/isdn/gigaset/Kconfig b/drivers/isdn/gigaset/Kconfig index 18ab8652aa57..6fd2dc1e97fb 100644 --- a/drivers/isdn/gigaset/Kconfig +++ b/drivers/isdn/gigaset/Kconfig | |||
@@ -1,6 +1,5 @@ | |||
1 | menuconfig ISDN_DRV_GIGASET | 1 | menuconfig ISDN_DRV_GIGASET |
2 | tristate "Siemens Gigaset support" | 2 | tristate "Siemens Gigaset support" |
3 | depends on ISDN_I4L | ||
4 | select CRC_CCITT | 3 | select CRC_CCITT |
5 | select BITREVERSE | 4 | select BITREVERSE |
6 | help | 5 | help |
@@ -11,9 +10,21 @@ menuconfig ISDN_DRV_GIGASET | |||
11 | If you have one of these devices, say M here and for at least | 10 | If you have one of these devices, say M here and for at least |
12 | one of the connection specific parts that follow. | 11 | one of the connection specific parts that follow. |
13 | This will build a module called "gigaset". | 12 | This will build a module called "gigaset". |
13 | Note: If you build the ISDN4Linux subsystem (ISDN_I4L) | ||
14 | as a module, you have to build this driver as a module too, | ||
15 | otherwise the Gigaset device won't show up as an ISDN device. | ||
14 | 16 | ||
15 | if ISDN_DRV_GIGASET | 17 | if ISDN_DRV_GIGASET |
16 | 18 | ||
19 | config GIGASET_I4L | ||
20 | bool | ||
21 | depends on ISDN_I4L='y'||(ISDN_I4L='m'&&ISDN_DRV_GIGASET='m') | ||
22 | default y | ||
23 | |||
24 | config GIGASET_DUMMYLL | ||
25 | bool | ||
26 | default !GIGASET_I4L | ||
27 | |||
17 | config GIGASET_BASE | 28 | config GIGASET_BASE |
18 | tristate "Gigaset base station support" | 29 | tristate "Gigaset base station support" |
19 | depends on USB | 30 | depends on USB |