Nico Huber submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved Angel Pons: Looks good to me, approved
platform.h: remove const from forward declarations

A `const` on the parameter itself is irrelevant to the caller.

Change-Id: Iea26d75719ebb718203dbba883ac88f459c68c0a
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/63585
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
---
M platform.h
1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/platform.h b/platform.h
index adb2e73..4f2a4c1 100644
--- a/platform.h
+++ b/platform.h
@@ -77,27 +77,27 @@
uint##bits##_t name##bits (const uint##bits##_t value) { return swap##bits (value); }

/* convert cpu native endian to little endian */
-uint8_t cpu_to_le8 (const uint8_t value);
-uint16_t cpu_to_le16(const uint16_t value);
-uint32_t cpu_to_le32(const uint32_t value);
-uint64_t cpu_to_le64(const uint64_t value);
+uint8_t cpu_to_le8 (uint8_t value);
+uint16_t cpu_to_le16(uint16_t value);
+uint32_t cpu_to_le32(uint32_t value);
+uint64_t cpu_to_le64(uint64_t value);

/* convert cpu native endian to big endian */
-uint8_t cpu_to_be8 (const uint8_t value);
-uint16_t cpu_to_be16(const uint16_t value);
-uint32_t cpu_to_be32(const uint32_t value);
-uint64_t cpu_to_be64(const uint64_t value);
+uint8_t cpu_to_be8 (uint8_t value);
+uint16_t cpu_to_be16(uint16_t value);
+uint32_t cpu_to_be32(uint32_t value);
+uint64_t cpu_to_be64(uint64_t value);

/* convert little endian to cpu native endian */
-uint8_t le_to_cpu8 (const uint8_t value);
-uint16_t le_to_cpu16(const uint16_t value);
-uint32_t le_to_cpu32(const uint32_t value);
-uint64_t le_to_cpu64(const uint64_t value);
+uint8_t le_to_cpu8 (uint8_t value);
+uint16_t le_to_cpu16(uint16_t value);
+uint32_t le_to_cpu32(uint32_t value);
+uint64_t le_to_cpu64(uint64_t value);

/* convert big endian to cpu native endian */
-uint8_t be_to_cpu8 (const uint8_t value);
-uint16_t be_to_cpu16(const uint16_t value);
-uint32_t be_to_cpu32(const uint32_t value);
-uint64_t be_to_cpu64(const uint64_t value);
+uint8_t be_to_cpu8 (uint8_t value);
+uint16_t be_to_cpu16(uint16_t value);
+uint32_t be_to_cpu32(uint32_t value);
+uint64_t be_to_cpu64(uint64_t value);

#endif /* !__PLATFORM_H__ */

To view, visit change 63585. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Iea26d75719ebb718203dbba883ac88f459c68c0a
Gerrit-Change-Number: 63585
Gerrit-PatchSet: 3
Gerrit-Owner: Thomas Heijligen <src@posteo.de>
Gerrit-Reviewer: Angel Pons <th3fanbus@gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h@gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged