summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tests
diff options
context:
space:
mode:
authorMaxime Ripard <maxime@cerno.tech>2022-11-16 10:17:11 +0100
committerMaxime Ripard <maxime@cerno.tech>2022-11-16 16:13:18 +0100
commit330ff5a555869aa0ba3b4c206bf046232e356842 (patch)
tree69a8f2ac2ce38959333c05dddc9934e0f0427254 /drivers/gpu/drm/tests
parentf7711fdde1cd15e261adfab819c0e714e563bf60 (diff)
downloadlinux-stable-330ff5a555869aa0ba3b4c206bf046232e356842.tar.gz
linux-stable-330ff5a555869aa0ba3b4c206bf046232e356842.tar.bz2
linux-stable-330ff5a555869aa0ba3b4c206bf046232e356842.zip
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 <sfr@canb.auug.org.au> Reviewed-by: MaĆ­ra Canal <mairacanal@riseup.net> Link: https://lore.kernel.org/r/20221116091712.1309651-2-maxime@cerno.tech Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Diffstat (limited to 'drivers/gpu/drm/tests')
-rw-r--r--drivers/gpu/drm/tests/drm_kunit_helpers.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tests/drm_kunit_helpers.c b/drivers/gpu/drm/tests/drm_kunit_helpers.c
index dbd8ec24d4be..eea450de7de8 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 <maxime@cerno.tech>");
+MODULE_LICENSE("GPL");