mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-30 08:23:42 +02:00
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>
This commit is contained in:
parent
999bbb32ae
commit
c456944170
32
platform.h
32
platform.h
@ -77,27 +77,27 @@ static inline uint64_t swap64(const uint64_t value)
|
||||
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__ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user