blob: 30eb18abd045d681cbc907489055ba8791c0b248 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __SMI_INFO_UTIL_H__
#define __SMI_INFO_UTIL_H__
#include <asm/io.h>
#include <linux/ioctl.h>
#include <linux/fs.h>
#include <mach/mt_smi.h>
int smi_set_mm_info_ioctl_wrapper(struct file *pFile, unsigned int cmd, unsigned long param);
int smi_get_mm_info_ioctl_wrapper(struct file *pFile, unsigned int cmd, unsigned long param);
void smi_bwc_mm_info_set(int property_id, long val1, long val2);
extern MTK_SMI_BWC_MM_INFO g_smi_bwc_mm_info;
#endif /* __SMI_INFO_UTIL_H__ */
|