summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2018-06-04 04:30:57 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2018-06-04 04:30:57 -0700
commit68745c46c6376f3d9a08572a197e4e09cc1cc102 (patch)
tree209480ff1ff3f10b4ead4a4f13abb70448ab38ba /include
parentd56749a4f930beb22550f93dbf77bf886111f3ee (diff)
parent7c7109f9b9f0cd11e32fd5c22100ae9df8a83ec9 (diff)
Merge "soc: qcom: boot_marker: add mpm timer interface"
Diffstat (limited to 'include')
-rw-r--r--include/soc/qcom/boot_stats.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/soc/qcom/boot_stats.h b/include/soc/qcom/boot_stats.h
index cebf4be1ebf6..53868adf3696 100644
--- a/include/soc/qcom/boot_stats.h
+++ b/include/soc/qcom/boot_stats.h
@@ -31,12 +31,14 @@ struct boot_stats {
int boot_stats_init(void);
int boot_stats_exit(void);
unsigned long long int msm_timer_get_sclk_ticks(void);
+phys_addr_t msm_timer_get_pa(void);
#else
static inline int boot_stats_init(void) { return 0; }
static inline unsigned long long int msm_timer_get_sclk_ticks(void)
{
return 0;
}
+static inline phys_addr_t msm_timer_get_pa(void) { return 0; }
#endif
#ifdef CONFIG_MSM_BOOT_TIME_MARKER