summaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/util.h b/include/util.h
index d05869305d..90e52dd2a5 100644
--- a/include/util.h
+++ b/include/util.h
@@ -222,24 +222,6 @@ int parse_offset_size(int argc, char **argv, int shift,
*/
void hexdump(const uint8_t *data, int len);
-#ifdef CONFIG_ASSEMBLY_MULA32
-/*
- * Compute (a*b)+c, where a, b, c are 32-bit integers, and the result is
- * 64-bit long.
- */
-uint64_t mula32(uint32_t a, uint32_t b, uint32_t c);
-#else
-static inline uint64_t mula32(uint32_t a, uint32_t b, uint32_t c)
-{
- uint64_t ret = a;
-
- ret *= b;
- ret += c;
-
- return ret;
-}
-#endif
-
#ifdef __cplusplus
}
#endif