Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usb: collapse USB_STORAGE Kconfig comment

The two Kconfig "comment" calls render in /proc/config.gz as split
sections:
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#

"make menuconfig" renders the comments as:
*** NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may ***
*** also be needed; see USB_STORAGE Help for more info ***

Kconfig doesn't support splitting a comment cleanly over two lines, so
just collapse it into a single oversize comment.

Signed-off-by: David Disseldorp <ddiss@suse.de>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Link: https://lore.kernel.org/r/20241127232830.26923-2-ddiss@suse.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

David Disseldorp and committed by
Greg Kroah-Hartman
8d674357 e500d497

+1 -2
+1 -2
drivers/usb/storage/Kconfig
··· 3 3 # USB Storage driver configuration 4 4 # 5 5 6 - comment "NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may" 7 - comment "also be needed; see USB_STORAGE Help for more info" 6 + comment "NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; see USB_STORAGE Help for more info" 8 7 9 8 config USB_STORAGE 10 9 tristate "USB Mass Storage support"