Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.12 22 lines 516 B view raw
1// SPDX-License-Identifier: MIT 2 3#include <linux/module.h> 4 5#include "drm_dp_helper_internal.h" 6 7MODULE_DESCRIPTION("DRM display adapter helper"); 8MODULE_LICENSE("GPL and additional rights"); 9 10static int __init drm_display_helper_module_init(void) 11{ 12 return drm_dp_aux_dev_init(); 13} 14 15static void __exit drm_display_helper_module_exit(void) 16{ 17 /* Call exit functions from specific dp helpers here */ 18 drm_dp_aux_dev_exit(); 19} 20 21module_init(drm_display_helper_module_init); 22module_exit(drm_display_helper_module_exit);