diff options
author | Tony Lin <tony.lin@freescale.com> | 2011-11-11 11:00:39 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:18:05 +0800 |
commit | d44c883ba569e604d450c6b6fc638bf455386013 (patch) | |
tree | f6b75202144f26ef9d7a6456ab54a8689953c16a /include | |
parent | 5fa241a26e35ab5551fdcbebd81ec7a903ad6325 (diff) |
ENGR00161951-1 [mx6q]performance monitor driver
add plt_init & plt_exit functions to structure, so that
the driver would have chance to do platform specific init and exit
Signed-off-by: Tony Lin <tony.lin@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fsl_devices.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index d528828de204..1fa74c78aa1a 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h @@ -369,6 +369,8 @@ struct mxs_perfmon_bit_config { struct mxs_platform_perfmon_data { struct mxs_perfmon_bit_config *bit_config_tab; int bit_config_cnt; + void (*plt_init) (void); + void (*plt_exit) (void); }; #endif /* _FSL_DEVICE_H_ */ |