aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/selftests/test-drm_modeset_common.c
blob: fad5209043f157fba0b86c81932c5cdbb3aa0d98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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");