mtk_thermal_dummy.c 699 B

123456789101112131415161718192021222324252627282930313233
  1. #include <asm/uaccess.h>
  2. /* #include <asm/system.h> */
  3. #include <linux/kernel.h>
  4. #include <linux/module.h>
  5. #include <linux/types.h>
  6. #include <linux/err.h>
  7. #include <mtk_thermal_typedefs.h>
  8. /* ************************************ */
  9. /* Definition */
  10. /* ************************************ */
  11. unsigned long (*mtk_thermal_get_gpu_loading_fp)(void) = NULL;
  12. /*EXPORT_SYMBOL(mtk_thermal_get_gpu_loading_fp);
  13. Should open, but I turn it off for coding style
  14. */
  15. /* Init */
  16. static int __init mtk_thermal_platform_init(void)
  17. {
  18. int err = 0;
  19. return err;
  20. }
  21. /* Exit */
  22. static void __exit mtk_thermal_platform_exit(void)
  23. {
  24. }
  25. module_init(mtk_thermal_platform_init);
  26. module_exit(mtk_thermal_platform_exit);