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

usb: gadget: mass_storage: Place EXPORT_SYMBOL_GPL() after func definition

EXPORT_SYMBOL_GPL() is usually placed after function definition
not before.

Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>

authored by

Krzysztof Opasiak and committed by
Felipe Balbi
bab7a1f1 903588a9

+1 -1
+1 -1
drivers/usb/gadget/function/f_mass_storage.c
··· 2761 2761 common->luns[i] = NULL; 2762 2762 } 2763 2763 } 2764 - EXPORT_SYMBOL_GPL(fsg_common_remove_luns); 2765 2764 2766 2765 void fsg_common_remove_luns(struct fsg_common *common) 2767 2766 { 2768 2767 _fsg_common_remove_luns(common, common->nluns); 2769 2768 } 2769 + EXPORT_SYMBOL_GPL(fsg_common_remove_luns); 2770 2770 2771 2771 void fsg_common_free_luns(struct fsg_common *common) 2772 2772 {