diff options
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 a583c0c..db2da75 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) { |