···11#22-# USB ATM driver configuration22+# USB/ATM DSL configuration33#44-comment "USB ATM/DSL drivers"44+55+menu "USB DSL modem support"56 depends on USB6778config USB_ATM88- tristate "Generic USB ATM/DSL core I/O support"99+ tristate "USB DSL modem support"910 depends on USB && ATM1011 select CRC321112 default n1213 help1313- This provides a library which is used for packet I/O by USB DSL1414- modems, such as the SpeedTouch driver below. 1414+ Say Y here if you want to connect a USB Digital Subscriber Line (DSL)1515+ modem to your computer's USB port. You will then need to choose your1616+ modem from the list below.15171618 To compile this driver as a module, choose M here: the1717- module will be called usb_atm.1919+ module will be called usbatm.18201921config USB_SPEEDTOUCH2020- tristate "Alcatel Speedtouch USB support"2121- depends on USB && ATM2222- select USB_ATM2222+ tristate "Speedtouch USB support"2323+ depends on USB_ATM2424+ select FW_LOADER2325 help2424- Say Y here if you have an Alcatel SpeedTouch USB or SpeedTouch 3302626+ Say Y here if you have an SpeedTouch USB or SpeedTouch 3302527 modem. In order to use your modem you will need to install the 2628 two parts of the firmware, extracted by the user space tools; see2729 <http://www.linux-usb.org/SpeedTouch/> for details.28302931 To compile this driver as a module, choose M here: the3032 module will be called speedtch.3333+3434+config USB_CXACRU3535+ tristate "Conexant AccessRunner USB support"3636+ depends on USB_ATM3737+ select FW_LOADER3838+ help3939+ Say Y here if you have an ADSL USB modem based on the Conexant4040+ AccessRunner chipset. In order to use your modem you will need to4141+ install the firmware, extracted by the user space tools; see4242+ <http://accessrunner.sourceforge.net/> for details.4343+4444+ To compile this driver as a module, choose M here: the4545+ module will be called cxacru.4646+4747+config USB_XUSBATM4848+ tristate "Other USB DSL modem support"4949+ depends on USB_ATM5050+ help5151+ Say Y here if you have a DSL USB modem not explicitly supported by5252+ another USB DSL drivers. In order to use your modem you will need to5353+ pass the vendor ID, product ID, and endpoint numbers for transmission5454+ and reception as module parameters. You may need to initialize the5555+ the modem using a user space utility (a firmware loader for example).5656+5757+ To compile this driver as a module, choose M here: the5858+ module will be called xusbatm.5959+6060+endmenu
+4-3
drivers/usb/atm/Makefile
···11#22-# Makefile for the rest of the USB drivers33-# (the ones that don't fit into any other categories)22+# Makefile for USB ATM/xDSL drivers43#5466-obj-$(CONFIG_USB_ATM) += usb_atm.o55+obj-$(CONFIG_USB_CXACRU) += cxacru.o76obj-$(CONFIG_USB_SPEEDTOUCH) += speedtch.o77+obj-$(CONFIG_USB_ATM) += usbatm.o88+obj-$(CONFIG_USB_XUSBATM) += xusbatm.o