diff options
| author | Tom Rini <[email protected]> | 2017-06-08 22:33:25 -0400 |
|---|---|---|
| committer | Philipp Tomsich <[email protected]> | 2017-06-23 16:40:23 +0200 |
| commit | beca2901fd09f265b6a9b521d31276f93404cd6a (patch) | |
| tree | 50d7a14e943ffafc5c18acbcfc65017bd6327aa3 /tools | |
| parent | 235c5b8315c6a9eb566fd3d99a098cc6db869fc5 (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 <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Philipp Tomsich <[email protected]>
Signed-off-by: Philipp Tomsich <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/rkcommon.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/rkcommon.c b/tools/rkcommon.c index a583c0caa0d..db2da75a966 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) { |
