mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 20:45:20 +07:00
920532991a
With this patch split the kernel module specific code from actual selftest code. This is done to allow adding more selftests as separate file. Also added kernel module exit stub with this patch. Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: alexandru-cosmin.gheorghe@arm.com Signed-off-by: Deepak Rawat <drawat@vmware.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20181016204609.1555-1-drawat@vmware.com
24 lines
415 B
C
24 lines
415 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Common file for modeset selftests.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include "test-drm_modeset_common.h"
|
|
|
|
static int __init test_drm_modeset_init(void)
|
|
{
|
|
return test_drm_plane_helper();
|
|
}
|
|
|
|
static void __exit test_drm_modeset_exit(void)
|
|
{
|
|
}
|
|
|
|
module_init(test_drm_modeset_init);
|
|
module_exit(test_drm_modeset_exit);
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
MODULE_LICENSE("GPL");
|