aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorTony Lin <tony.lin@freescale.com>2011-01-11 18:01:03 +0800
committerEric Miao <eric.miao@canonical.com>2011-11-10 07:37:42 +0800
commit2ab3a5d822f0d3c66bc124b02fd30a3a318a52bc (patch)
tree318033c2c119509acc4df0f97521f4f5a4906adc /include/linux
parentbffcc5d47f8f7b09c6dfb72f31e07cd975c82667 (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/linux')
-rw-r--r--include/linux/fsl_devices.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h
index a1c065037bf..c34674bf44b 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_ */