From e7b538f48f44dce9b64454aaa1b99ad2f3389893 Mon Sep 17 00:00:00 2001 From: Tony Lin Date: Tue, 11 Jan 2011 18:01:03 +0800 Subject: [PATCH] ENGR00137979-3 add header file for performance monitor driver add header file for performance monitor driver under include/linux Signed-off-by: Tony Lin --- include/linux/fsl_devices.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index fa8c14504cd7..7e41d6d279d6 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h @@ -293,4 +293,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_ */ -- 2.39.5