diff options
Diffstat (limited to 'include/env.h')
| -rw-r--r-- | include/env.h | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/include/env.h b/include/env.h index 727f58528f9..b59c3c36f20 100644 --- a/include/env.h +++ b/include/env.h @@ -1,6 +1,6 @@  /* SPDX-License-Identifier: GPL-2.0+ */  /* - * Common environment functions + * Common environment functions and definitions   *   * (C) Copyright 2000-2009   * Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -14,6 +14,13 @@  struct environment_s; +/* Value for environment validity */ +enum env_valid { +	ENV_INVALID,	/* No valid environment */ +	ENV_VALID,	/* First or only environment is valid */ +	ENV_REDUND,	/* Redundant environment is valid */ +}; +  /**   * env_get_id() - Gets a sequence number for the environment   * | 
