diff options
author | Oliver Neukum <oneukum@suse.com> | 2019-11-12 16:49:39 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-01 09:17:40 +0100 |
commit | e70448b92253c6b20a95b852147a7ff4b97f1c34 (patch) | |
tree | 725a62bf7c8c3457adde7a317cb45511403f05e9 | |
parent | 5d0b56f6725d93e750ec9a5a99222294fc631004 (diff) | |
download | linux-stable-e70448b92253c6b20a95b852147a7ff4b97f1c34.tar.gz linux-stable-e70448b92253c6b20a95b852147a7ff4b97f1c34.tar.bz2 linux-stable-e70448b92253c6b20a95b852147a7ff4b97f1c34.zip |
USBIP: add config dependency for SGL_ALLOC
commit 1ec13abac58b6f24e32f0d3081ef4e7456e62ed8 upstream.
USBIP uses lib/scatterlist.h
Hence it needs to set CONFIG_SGL_ALLOC
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Cc: stable <stable@vger.kernel.org>
Acked-by: Shuah Khan <skhan@linuxfoundation.org>
Link: https://lore.kernel.org/r/20191112154939.21217-1-oneukum@suse.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/usbip/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/usbip/Kconfig b/drivers/usb/usbip/Kconfig index a20b65cb6678..8276a20ecea7 100644 --- a/drivers/usb/usbip/Kconfig +++ b/drivers/usb/usbip/Kconfig @@ -2,6 +2,7 @@ config USBIP_CORE tristate "USB/IP support" depends on NET select USB_COMMON + select SGL_ALLOC ---help--- This enables pushing USB packets over IP to allow remote machines direct access to USB devices. It provides the |