machine_815x_init.c 921 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License version 2 and
  5. only version 2 as published by the Free Software Foundation.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. *
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include "machine_815x_init.h"
  15. static int __init audio_machine_815x_init(void)
  16. {
  17. sm8150_init();
  18. sa8155_init();
  19. return 0;
  20. }
  21. static void audio_machine_815x_exit(void)
  22. {
  23. sm8150_exit();
  24. sa8155_exit();
  25. }
  26. module_init(audio_machine_815x_init);
  27. module_exit(audio_machine_815x_exit);
  28. MODULE_DESCRIPTION("Audio Machine 815X Driver");
  29. MODULE_LICENSE("GPL v2");