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

USB: gadget: fix up some comments about CONFIG_USB_DEBUG

These two gadget drivers said that their #endif was for
CONFIG_USB_DEBUG, but they really were not, so fix them up to be
correct.

Cc: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

+2 -2
+1 -1
drivers/usb/gadget/acm_ms.c
··· 107 107 */ 108 108 #define fsg_num_buffers CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS 109 109 110 - #endif /* CONFIG_USB_DEBUG */ 110 + #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ 111 111 112 112 FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data); 113 113
+1 -1
drivers/usb/gadget/multi.c
··· 134 134 */ 135 135 #define fsg_num_buffers CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS 136 136 137 - #endif /* CONFIG_USB_DEBUG */ 137 + #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ 138 138 139 139 FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data); 140 140