diff options
author | Tony Lin <tony.lin@freescale.com> | 2011-01-11 18:01:03 +0800 |
---|---|---|
committer | Tony Lin <tony.lin@freescale.com> | 2011-04-13 18:42:49 +0800 |
commit | b14c1162ee6a9a6dc188317ff92ea175400561e4 (patch) | |
tree | 318033c2c119509acc4df0f97521f4f5a4906adc /include | |
parent | 210f1b51a29184f3ea24df313ef2c1cc3e260f72 (diff) |
ENGR00137979-3 add header file for performance monitor driver
add header file for performance monitor driver under include/linux
Signed-off-by: Tony Lin <tony.lin@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fsl_devices.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index a1c065037bfe..c34674bf44b5 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h @@ -288,4 +288,15 @@ int fsl_deep_sleep(void); static inline int fsl_deep_sleep(void) { return 0; } #endif +struct mxs_perfmon_bit_config { + int reg; + int field; + const char *name; +}; + +struct mxs_platform_perfmon_data { + struct mxs_perfmon_bit_config *bit_config_tab; + int bit_config_cnt; +}; + #endif /* _FSL_DEVICE_H_ */ |