mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 04:14:34 +00:00
env: Rename nand env_location to nand_env_location
We want to use this name for all environment drivers. Update the nand driver to use a more specific name. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
203e94f6c9
commit
42a8180d19
1 changed files with 3 additions and 3 deletions
6
env/nand.c
vendored
6
env/nand.c
vendored
|
@ -158,12 +158,12 @@ static int writeenv(size_t offset, u_char *buf)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct env_location {
|
struct nand_env_location {
|
||||||
const char *name;
|
const char *name;
|
||||||
const nand_erase_options_t erase_opts;
|
const nand_erase_options_t erase_opts;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int erase_and_write_env(const struct env_location *location,
|
static int erase_and_write_env(const struct nand_env_location *location,
|
||||||
u_char *env_new)
|
u_char *env_new)
|
||||||
{
|
{
|
||||||
struct mtd_info *mtd;
|
struct mtd_info *mtd;
|
||||||
|
@ -189,7 +189,7 @@ int saveenv(void)
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
|
ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
|
||||||
int env_idx = 0;
|
int env_idx = 0;
|
||||||
static const struct env_location location[] = {
|
static const struct nand_env_location location[] = {
|
||||||
{
|
{
|
||||||
.name = "NAND",
|
.name = "NAND",
|
||||||
.erase_opts = {
|
.erase_opts = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue