summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/include/gpt_misc.h9
-rw-r--r--firmware/lib/cgptlib/include/cgptlib_internal.h9
2 files changed, 9 insertions, 9 deletions
diff --git a/firmware/include/gpt_misc.h b/firmware/include/gpt_misc.h
index e5a366bb..49e13518 100644
--- a/firmware/include/gpt_misc.h
+++ b/firmware/include/gpt_misc.h
@@ -196,4 +196,13 @@ int GptUpdateKernelWithEntry(GptData *gpt, GptEntry *e, uint32_t update_type);
*/
int GptUpdateKernelEntry(GptData *gpt, uint32_t update_type);
+/* Getters and setters for partition attribute fields. */
+
+int GetEntrySuccessful(const GptEntry *e);
+int GetEntryPriority(const GptEntry *e);
+int GetEntryTries(const GptEntry *e);
+void SetEntrySuccessful(GptEntry *e, int successful);
+void SetEntryPriority(GptEntry *e, int priority);
+void SetEntryTries(GptEntry *e, int tries);
+
#endif /* VBOOT_REFERENCE_CGPT_MISC_H_ */
diff --git a/firmware/lib/cgptlib/include/cgptlib_internal.h b/firmware/lib/cgptlib/include/cgptlib_internal.h
index 50477c4f..b13c4916 100644
--- a/firmware/lib/cgptlib/include/cgptlib_internal.h
+++ b/firmware/lib/cgptlib/include/cgptlib_internal.h
@@ -138,15 +138,6 @@ void GptRepair(GptData *gpt);
*/
void GptModified(GptData *gpt);
-/* Getters and setters for partition attribute fields. */
-
-int GetEntrySuccessful(const GptEntry *e);
-int GetEntryPriority(const GptEntry *e);
-int GetEntryTries(const GptEntry *e);
-void SetEntrySuccessful(GptEntry *e, int successful);
-void SetEntryPriority(GptEntry *e, int priority);
-void SetEntryTries(GptEntry *e, int tries);
-
/**
* Return 1 if the entry is a Chrome OS kernel partition, else 0.
*/