]> Git Repo - linux.git/blob - drivers/gpu/drm/dp/drm_dp_helper_mod.c
dm: conditionally enable BIOSET_PERCPU_CACHE for dm_io bioset
[linux.git] / drivers / gpu / drm / dp / drm_dp_helper_mod.c
1 // SPDX-License-Identifier: MIT
2
3 #include <linux/module.h>
4
5 #include "drm_dp_helper_internal.h"
6
7 MODULE_DESCRIPTION("DRM DisplayPort helper");
8 MODULE_LICENSE("GPL and additional rights");
9
10 static int __init drm_dp_helper_module_init(void)
11 {
12         return drm_dp_aux_dev_init();
13 }
14
15 static void __exit drm_dp_helper_module_exit(void)
16 {
17         /* Call exit functions from specific dp helpers here */
18         drm_dp_aux_dev_exit();
19 }
20
21 module_init(drm_dp_helper_module_init);
22 module_exit(drm_dp_helper_module_exit);
This page took 0.035755 seconds and 4 git commands to generate.