Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: MIT
0002 
0003 #include <linux/module.h>
0004 
0005 #include "drm_dp_helper_internal.h"
0006 
0007 MODULE_DESCRIPTION("DRM display adapter helper");
0008 MODULE_LICENSE("GPL and additional rights");
0009 
0010 static int __init drm_display_helper_module_init(void)
0011 {
0012     return drm_dp_aux_dev_init();
0013 }
0014 
0015 static void __exit drm_display_helper_module_exit(void)
0016 {
0017     /* Call exit functions from specific dp helpers here */
0018     drm_dp_aux_dev_exit();
0019 }
0020 
0021 module_init(drm_display_helper_module_init);
0022 module_exit(drm_display_helper_module_exit);