drm_display_helper_mod.c 516 B

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