mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
env: Rename the redundancy flags
Add an ENV prefix to these two flags so that it is clear what they relate to. Also move them to env.h since they are part of the public API. Use an enum rather than a #define to tie them together. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
25e51e90fe
commit
d3716dd64b
7 changed files with 39 additions and 31 deletions
|
@ -55,6 +55,12 @@ struct env_clbk_tbl {
|
|||
{#name, callback}
|
||||
#endif
|
||||
|
||||
/** enum env_redund_flags - Flags for the redundand_environment */
|
||||
enum env_redund_flags {
|
||||
ENV_REDUND_OBSOLETE = 0,
|
||||
ENV_REDUND_ACTIVE = 1,
|
||||
};
|
||||
|
||||
/**
|
||||
* env_get_id() - Gets a sequence number for the environment
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue