u-boot/drivers/bootcount/bootcount_env.c
Simon Glass 01510091de env: Drop saveenv() in favour of env_save()
Use the env_save() function directly now that there is only one
implementation of saveenv().

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Wolfgang Denk <wd@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
2017-08-15 20:50:30 -04:00

31 lines
547 B
C

/*
* (C) Copyright 2013
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <environment.h>
void bootcount_store(ulong a)
{
int upgrade_available = getenv_ulong("upgrade_available", 10, 0);
if (upgrade_available) {
setenv_ulong("bootcount", a);
env_save();
}
}
ulong bootcount_load(void)
{
int upgrade_available = getenv_ulong("upgrade_available", 10, 0);
ulong val = 0;
if (upgrade_available)
val = getenv_ulong("bootcount", 10, 0);
return val;
}