From d618846a8f8f7047ca76ac1e039ffb214b60a874 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Mon, 29 Jun 2026 21:31:28 +0300 Subject: [PATCH] ipodpatcher: Remove unused functions Co-authored-by: ChatGPT (GPT-5.3 Mini) Change-Id: Iedb2d42612d543e7761dd1c2628310cd053652e3 --- utils/ipodpatcher/ipodpatcher.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/utils/ipodpatcher/ipodpatcher.c b/utils/ipodpatcher/ipodpatcher.c index afda645369..de9ca5b3f7 100644 --- a/utils/ipodpatcher/ipodpatcher.c +++ b/utils/ipodpatcher/ipodpatcher.c @@ -127,19 +127,6 @@ static inline int be2int(unsigned char* buf) return res; } -static inline int getint16le(char* buf) -{ - int16_t res = (buf[1] << 8) | buf[0]; - - return res; -} - -static inline void short2le(unsigned short val, unsigned char* addr) -{ - addr[0] = val & 0xFF; - addr[1] = (val >> 8) & 0xff; -} - static inline void int2le(unsigned int val, unsigned char* addr) { addr[0] = val & 0xFF;