mirror of
https://github.com/linux-msm/rmtfs.git
synced 2026-04-09 15:02:31 +02:00
rmtfs: remove unused cpu_to_le32 and le32_to_cpu functions
This patch addresses the following compiler warnings on unused function:
rmtfs.c:24:22: warning: unused function 'cpu_to_le32' [-Wunused-function]
static inline __le32 cpu_to_le32(uint32_t x) { return htole32(x); }
^
rmtfs.c:25:24: warning: unused function 'le32_to_cpu' [-Wunused-function]
static inline uint32_t le32_to_cpu(__le32 x) { return le32toh(x); }
^
This commit is contained in:
committed by
Bjorn Andersson
parent
b3ea7fdf7b
commit
0d3c49ec5a
Reference in New Issue
Block a user