summaryrefslogtreecommitdiff
path: root/chip/stm32/bkpdata.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/bkpdata.c')
-rw-r--r--chip/stm32/bkpdata.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/chip/stm32/bkpdata.c b/chip/stm32/bkpdata.c
index ded77401d6..bde026facd 100644
--- a/chip/stm32/bkpdata.c
+++ b/chip/stm32/bkpdata.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -65,7 +65,7 @@ int bkpdata_index_lookup(enum system_bbram_idx idx, int *msb)
return -1;
}
-uint32_t bkpdata_read_reset_flags()
+uint32_t bkpdata_read_reset_flags(void)
{
uint32_t flags = bkpdata_read(BKPDATA_INDEX_SAVED_RESET_FLAGS);
@@ -76,8 +76,7 @@ uint32_t bkpdata_read_reset_flags()
return flags;
}
-__overridable
-void bkpdata_write_reset_flags(uint32_t save_flags)
+__overridable void bkpdata_write_reset_flags(uint32_t save_flags)
{
bkpdata_write(BKPDATA_INDEX_SAVED_RESET_FLAGS, save_flags & 0xffff);
#ifdef CONFIG_STM32_EXTENDED_RESET_FLAGS