]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usbip: vudc: Add vudc to Kconfig
authorIgor Kotrasinski <i.kotrasinsk@samsung.com>
Tue, 8 Mar 2016 20:49:07 +0000 (21:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 26 Apr 2016 22:19:50 +0000 (15:19 -0700)
Add the driver to Kconfig to make it visible in menuconfig
and allow people to compile it.

This commit is a result of cooperation between Samsung R&D Institute
Poland and Open Operating Systems Student Society at University
of Warsaw (O2S3@UW) consisting of:

    Igor Kotrasinski <ikotrasinsk@gmail.com>
    Karol Kosik <karo9@interia.eu>
    Ewelina Kosmider <3w3lfin@gmail.com>
    Dawid Lazarczyk <lazarczyk.dawid@gmail.com>
    Piotr Szulc <ps347277@students.mimuw.edu.pl>

Tutor and project owner:
    Krzysztof Opasiak <k.opasiak@samsung.com>

Signed-off-by: Igor Kotrasinski <i.kotrasinsk@samsung.com>
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/usbip/Kconfig
drivers/usb/usbip/Makefile

index bd99e9e47e50982523e9b5fc4e27533d2b060f25..ebf4ff05089039707f13d3889ee5d1f00aa05665 100644 (file)
@@ -34,6 +34,17 @@ config USBIP_HOST
          To compile this driver as a module, choose M here: the
          module will be called usbip-host.
 
+config USBIP_VUDC
+       tristate "VUDC driver"
+       depends on USBIP_CORE
+       ---help---
+         This enables the USB/IP virtual USB device controller
+         driver, which is run on the host machine, allowing the
+         machine itself to act as a device.
+
+         To compile this driver as a module, choose M here: the
+         module will be called usbip-vudc.
+
 config USBIP_DEBUG
        bool "Debug messages for USB/IP"
        depends on USBIP_CORE
index 9ecd61545be19de4cd9dd96aa5c4b41b952a9954..d843a9e688528c9436b8806888c9efb6d8d126a9 100644 (file)
@@ -8,3 +8,6 @@ vhci-hcd-y := vhci_sysfs.o vhci_tx.o vhci_rx.o vhci_hcd.o
 
 obj-$(CONFIG_USBIP_HOST) += usbip-host.o
 usbip-host-y := stub_dev.o stub_main.o stub_rx.o stub_tx.o
+
+obj-$(CONFIG_USBIP_VUDC) += usbip-vudc.o
+usbip-vudc-y := vudc_dev.o vudc_sysfs.o vudc_tx.o vudc_rx.o vudc_transfer.o vudc_main.o