From: Liam Beguin Date: Sun, 10 Jul 2022 01:31:05 +0000 (-0400) Subject: iio: test: rescale: add MODULE_* information X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=53a2a90d5271ed4718a70f8e13faaaf9f9ba9eb6;p=linux.git iio: test: rescale: add MODULE_* information In preparation for module support, add missing MODULE_* information. Signed-off-by: Liam Beguin Link: https://lore.kernel.org/r/20220710013109.3349104-2-liambeguin@gmail.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/test/iio-test-rescale.c b/drivers/iio/test/iio-test-rescale.c index 0b6699bfd5537..735e2f97af18e 100644 --- a/drivers/iio/test/iio-test-rescale.c +++ b/drivers/iio/test/iio-test-rescale.c @@ -708,3 +708,7 @@ static struct kunit_suite iio_rescale_test_suite = { .test_cases = iio_rescale_test_cases, }; kunit_test_suite(iio_rescale_test_suite); + +MODULE_AUTHOR("Liam Beguin "); +MODULE_DESCRIPTION("Test IIO rescale conversion functions"); +MODULE_LICENSE("GPL v2");