diff options
author | Karsten Keil <keil@b1-systems.de> | 2009-07-08 08:21:12 -0400 |
---|---|---|
committer | Karsten Keil <keil@b1-systems.de> | 2009-07-25 14:15:21 -0400 |
commit | cb3824bade2549d7ad059d5802da43312540fdee (patch) | |
tree | 0ffcce666a8d3534f48ffa162defecf7e781c8ba /drivers/isdn/i4l/Kconfig | |
parent | 74d154189d597b91da4322996dbf4f5c3d1544ab (diff) |
ISDN: Make isdnhdlc usable for other ISDN drivers
isdnhdlc is useful for other ISDN drivers as well.
Move the include file to a central location and the source
to the central isdn location.
Signed-off-by: Karsten Keil <keil@b1-systems.de>
Diffstat (limited to 'drivers/isdn/i4l/Kconfig')
-rw-r--r-- | drivers/isdn/i4l/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/isdn/i4l/Kconfig b/drivers/isdn/i4l/Kconfig index ed3510f273d8..dd744ffd240b 100644 --- a/drivers/isdn/i4l/Kconfig +++ b/drivers/isdn/i4l/Kconfig | |||
@@ -2,6 +2,8 @@ | |||
2 | # Old ISDN4Linux config | 2 | # Old ISDN4Linux config |
3 | # | 3 | # |
4 | 4 | ||
5 | if ISDN_I4L | ||
6 | |||
5 | config ISDN_PPP | 7 | config ISDN_PPP |
6 | bool "Support synchronous PPP" | 8 | bool "Support synchronous PPP" |
7 | depends on INET | 9 | depends on INET |
@@ -135,3 +137,12 @@ source "drivers/isdn/act2000/Kconfig" | |||
135 | source "drivers/isdn/hysdn/Kconfig" | 137 | source "drivers/isdn/hysdn/Kconfig" |
136 | 138 | ||
137 | endmenu | 139 | endmenu |
140 | # end ISDN_I4L | ||
141 | endif | ||
142 | |||
143 | config ISDN_HDLC | ||
144 | tristate | ||
145 | depends on HISAX_ST5481 | ||
146 | select CRC_CCITT | ||
147 | select BITREVERSE | ||
148 | |||