Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bab7a1f1 authored by Krzysztof Opasiak's avatar Krzysztof Opasiak Committed by Felipe Balbi
Browse files

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: default avatarKrzysztof Opasiak <k.opasiak@samsung.com>
Acked-by: default avatarMichal Nazarewicz <mina86@mina86.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 903588a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2761,12 +2761,12 @@ static void _fsg_common_remove_luns(struct fsg_common *common, int n)
			common->luns[i] = NULL;
		}
}
EXPORT_SYMBOL_GPL(fsg_common_remove_luns);

void fsg_common_remove_luns(struct fsg_common *common)
{
	_fsg_common_remove_luns(common, common->nluns);
}
EXPORT_SYMBOL_GPL(fsg_common_remove_luns);

void fsg_common_free_luns(struct fsg_common *common)
{