diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2018-05-31 05:11:41 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-05-31 05:11:41 -0700 |
| commit | dad9612b1f808dd5afe75a5d7f970f4e9c6ecc8a (patch) | |
| tree | eda2762fff5e2794aa077321182c72dd09db31d7 | |
| parent | 155d32a6a7d851e28841c9c7511cc2edac7689a1 (diff) | |
| parent | e54fbdbc40b89793e17bed5ad1e952f8fdff041b (diff) | |
Merge "soc: qcom: boot_stats: Fix compilation issue"
| -rw-r--r-- | include/soc/qcom/boot_stats.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/soc/qcom/boot_stats.h b/include/soc/qcom/boot_stats.h index 5b82aa0bedc3..cebf4be1ebf6 100644 --- a/include/soc/qcom/boot_stats.h +++ b/include/soc/qcom/boot_stats.h @@ -33,7 +33,10 @@ int boot_stats_exit(void); unsigned long long int msm_timer_get_sclk_ticks(void); #else static inline int boot_stats_init(void) { return 0; } -unsigned long long int msm_timer_get_sclk_ticks(void) { return 0; } +static inline unsigned long long int msm_timer_get_sclk_ticks(void) +{ + return 0; +} #endif #ifdef CONFIG_MSM_BOOT_TIME_MARKER |
