summaryrefslogtreecommitdiff
path: root/chip/stm32/flash-f.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/flash-f.h')
-rw-r--r--chip/stm32/flash-f.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/chip/stm32/flash-f.h b/chip/stm32/flash-f.h
index cbbe6ec86f..507ded32f1 100644
--- a/chip/stm32/flash-f.h
+++ b/chip/stm32/flash-f.h
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -9,16 +9,16 @@
#include <stdbool.h>
enum flash_rdp_level {
- FLASH_RDP_LEVEL_INVALID = -1, /**< Error occurred. */
- FLASH_RDP_LEVEL_0, /**< No read protection. */
- FLASH_RDP_LEVEL_1, /**< Reading flash is disabled while in
- * bootloader mode or JTAG attached.
- * Changing to Level 0 from this level
- * triggers mass erase.
- */
- FLASH_RDP_LEVEL_2, /**< Same as Level 1, but is permanent
- * and can never be disabled.
- */
+ FLASH_RDP_LEVEL_INVALID = -1, /**< Error occurred. */
+ FLASH_RDP_LEVEL_0, /**< No read protection. */
+ FLASH_RDP_LEVEL_1, /**< Reading flash is disabled while in
+ * bootloader mode or JTAG attached.
+ * Changing to Level 0 from this level
+ * triggers mass erase.
+ */
+ FLASH_RDP_LEVEL_2, /**< Same as Level 1, but is permanent
+ * and can never be disabled.
+ */
};
bool is_flash_rdp_enabled(void);