summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorE V Ravi <evenka@codeaurora.org>2018-11-29 13:32:44 +0530
committerE V Ravi <evenka@codeaurora.org>2018-12-03 13:20:15 +0530
commitb03ef6aa9c7671a1c528e45d48bd56d9f892cc08 (patch)
tree6ceb6791a87fdc4739d6b005b0e54cc17c6a53c2 /include
parent58a9174f204e980b45317eec4e240f4afc3c24c0 (diff)
soc: qcom: boot_stats: Moved the early cam entry
Added the new bootmarkers in struct boot_stats for bootloader_checksum_start and bootloader_checksum_end to match the exact order of entries defined in the bootloader enum bs_entry. And also moved the bootloader_early_camera_start entry to the bottom to match the same. Change-Id: I1fa19aa21b658d8fdf7dcf5bba6658c40420d426 Signed-off-by: E V Ravi <evenka@codeaurora.org>
Diffstat (limited to 'include')
-rw-r--r--include/soc/qcom/boot_stats.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/soc/qcom/boot_stats.h b/include/soc/qcom/boot_stats.h
index 663dfb3ad1d5..777cc247e5df 100644
--- a/include/soc/qcom/boot_stats.h
+++ b/include/soc/qcom/boot_stats.h
@@ -24,8 +24,10 @@ struct boot_stats {
uint32_t load_kernel_end;
#ifdef CONFIG_MSM_BOOT_TIME_MARKER
uint32_t bootloader_early_domain_start;
- uint32_t bootloader_early_camera_start;
uint32_t bootloader_checksum;
+ uint32_t bootloader_checksum_start;
+ uint32_t bootloader_checksum_end;
+ uint32_t bootloader_early_camera_start;
#endif
};