mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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");
|