40 lines
752 B
C
40 lines
752 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
|
|
#include <linux/uaccess.h>
|
|
#include <linux/system.h>
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/types.h>
|
|
#include <linux/err.h>
|
|
|
|
/* ************************************ */
|
|
/* Definition */
|
|
/* ************************************ */
|
|
|
|
unsigned long (*mtk_thermal_get_gpu_loading_fp)(void) = NULL;
|
|
/*
|
|
* EXPORT_SYMBOL(mtk_thermal_get_gpu_loading_fp);
|
|
* Should open, but I turn it off for coding style
|
|
*/
|
|
|
|
/* Init */
|
|
static int __init mtk_thermal_platform_init(void)
|
|
{
|
|
int err = 0;
|
|
return err;
|
|
}
|
|
|
|
/* Exit */
|
|
static void __exit mtk_thermal_platform_exit(void)
|
|
{
|
|
|
|
}
|
|
|
|
module_init(mtk_thermal_platform_init);
|
|
module_exit(mtk_thermal_platform_exit);
|