Nico Huber has submitted this change. ( https://review.coreboot.org/c/flashrom/+/63585 )
Change subject: platform.h: remove const from forward declarations ......................................................................
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(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved Angel Pons: Looks good to me, approved
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__ */