From: Maxime Ripard Date: Wed, 16 Nov 2022 09:17:11 +0000 (+0100) Subject: drm/tests: helpers: Add module infos X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=330ff5a555869aa0ba3b4c206bf046232e356842;p=linux.git drm/tests: helpers: Add module infos The MODULE_LICENSE macro is missing from the kunit helpers file, thus leading to a build error. Let's introduce it along with MODULE_AUTHOR. Fixes: 44a3928324e9 ("drm/tests: Add Kunit Helpers") Reported-by: Stephen Rothwell Reviewed-by: MaĆ­ra Canal Link: https://lore.kernel.org/r/20221116091712.1309651-2-maxime@cerno.tech Signed-off-by: Maxime Ripard --- diff --git a/drivers/gpu/drm/tests/drm_kunit_helpers.c b/drivers/gpu/drm/tests/drm_kunit_helpers.c index dbd8ec24d4bec..eea450de7de8f 100644 --- a/drivers/gpu/drm/tests/drm_kunit_helpers.c +++ b/drivers/gpu/drm/tests/drm_kunit_helpers.c @@ -64,3 +64,6 @@ struct drm_device *drm_kunit_device_init(struct kunit *test, u32 features, char return drm; } + +MODULE_AUTHOR("Maxime Ripard "); +MODULE_LICENSE("GPL");