summaryrefslogtreecommitdiff
path: root/tools/rkcommon.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-06-08 22:33:25 -0400
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2017-06-23 16:40:23 +0200
commitbeca2901fd09f265b6a9b521d31276f93404cd6a (patch)
tree50d7a14e943ffafc5c18acbcfc65017bd6327aa3 /tools/rkcommon.c
parent235c5b8315c6a9eb566fd3d99a098cc6db869fc5 (diff)
rkcommon.c: Remove unused rkcommon_spi_to_offset
This function is unused, remove. Reported by clang-3.8. Fixes: a1c29d4b43dc ("rockchip: mkimage: set init_boot_size to avoid ...") Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'tools/rkcommon.c')
-rw-r--r--tools/rkcommon.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/rkcommon.c b/tools/rkcommon.c
index a583c0caa0..db2da75a96 100644
--- a/tools/rkcommon.c
+++ b/tools/rkcommon.c
@@ -226,11 +226,6 @@ static inline unsigned rkcommon_offset_to_spi(unsigned offset)
return ((offset & ~0x7ff) << 1) + (offset & 0x7ff);
}
-static inline unsigned rkcommon_spi_to_offset(unsigned offset)
-{
- return ((offset & ~0x7ff) >> 1) + (offset & 0x7ff);
-}
-
static int rkcommon_parse_header(const void *buf, struct header0_info *header0,
struct spl_info **spl_info)
{