mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
arm/km: checkpatch cleanup
Signed-off-by: Holger Brunck <holger.brunck@keymile.com> Cc: Valentin Longchamp <valentin.longchamp@keymile.com> Cc: Prafulla Wadaskar <prafulla@marvell.com> Acked-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
9e9c6d7cf6
commit
6a23f31162
1 changed files with 11 additions and 12 deletions
|
@ -416,13 +416,13 @@ const ulong REPEAT_PATTERN = 1000;
|
||||||
|
|
||||||
void bootcount_store(ulong a)
|
void bootcount_store(ulong a)
|
||||||
{
|
{
|
||||||
volatile ulong *save_addr;
|
ulong *save_addr;
|
||||||
volatile ulong size = 0;
|
ulong size = 0;
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
|
|
||||||
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
|
||||||
size += gd->bd->bi_dram[i].size;
|
size += gd->bd->bi_dram[i].size;
|
||||||
}
|
save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
|
||||||
save_addr = (ulong*)(size - BOOTCOUNT_ADDR);
|
|
||||||
writel(a, save_addr);
|
writel(a, save_addr);
|
||||||
writel(BOOTCOUNT_MAGIC, &save_addr[1]);
|
writel(BOOTCOUNT_MAGIC, &save_addr[1]);
|
||||||
|
|
||||||
|
@ -434,15 +434,14 @@ void bootcount_store(ulong a)
|
||||||
|
|
||||||
ulong bootcount_load(void)
|
ulong bootcount_load(void)
|
||||||
{
|
{
|
||||||
volatile ulong *save_addr;
|
ulong *save_addr;
|
||||||
volatile ulong size = 0;
|
ulong size = 0;
|
||||||
ulong counter = 0;
|
ulong counter = 0;
|
||||||
int i, tmp;
|
int i, tmp;
|
||||||
|
|
||||||
for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
|
||||||
size += gd->bd->bi_dram[i].size;
|
size += gd->bd->bi_dram[i].size;
|
||||||
}
|
save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
|
||||||
save_addr = (ulong*)(size - BOOTCOUNT_ADDR);
|
|
||||||
|
|
||||||
counter = readl(&save_addr[0]);
|
counter = readl(&save_addr[0]);
|
||||||
|
|
||||||
|
@ -492,13 +491,13 @@ int post_hotkeys_pressed(void)
|
||||||
|
|
||||||
ulong post_word_load(void)
|
ulong post_word_load(void)
|
||||||
{
|
{
|
||||||
volatile void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
|
void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
|
||||||
return in_le32(addr);
|
return in_le32(addr);
|
||||||
|
|
||||||
}
|
}
|
||||||
void post_word_store(ulong value)
|
void post_word_store(ulong value)
|
||||||
{
|
{
|
||||||
volatile void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
|
void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
|
||||||
out_le32(addr, value);
|
out_le32(addr, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue