gh_arm.c 385 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  4. *
  5. */
  6. #include <linux/module.h>
  7. static int __init gh_arm_init(void)
  8. {
  9. return 0;
  10. }
  11. module_init(gh_arm_init);
  12. static void __exit gh_arm_exit(void)
  13. {
  14. }
  15. module_exit(gh_arm_exit);
  16. MODULE_LICENSE("GPL");
  17. MODULE_DESCRIPTION("Qualcomm Technologies, Inc. Gunyah ARM64 Driver");