diff options
author | Oliver Neukum <[email protected]> | 2019-11-12 16:49:39 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2019-11-12 18:19:22 +0100 |
commit | 1ec13abac58b6f24e32f0d3081ef4e7456e62ed8 (patch) | |
tree | 58b57b14244d1fb57dca423a988d1d7f019172fa | |
parent | 92aa5986f4f7b5a8bf282ca0f50967f4326559f5 (diff) |
USBIP: add config dependency for SGL_ALLOC
USBIP uses lib/scatterlist.h
Hence it needs to set CONFIG_SGL_ALLOC
Signed-off-by: Oliver Neukum <[email protected]>
Cc: stable <[email protected]>
Acked-by: Shuah Khan <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-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 2f86b28fa3da..7bbae7a08642 100644 --- a/drivers/usb/usbip/Kconfig +++ b/drivers/usb/usbip/Kconfig @@ -4,6 +4,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 |