summaryrefslogtreecommitdiff
path: root/firmware/lib/include/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/lib/include/utility.h')
-rw-r--r--firmware/lib/include/utility.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/firmware/lib/include/utility.h b/firmware/lib/include/utility.h
index e8872492..e5539751 100644
--- a/firmware/lib/include/utility.h
+++ b/firmware/lib/include/utility.h
@@ -22,13 +22,6 @@
#define VbAssert(expr)
#endif
-/*
- * Combine [msw] and [lsw] uint16s to a uint32_t with its [msw] and [lsw]
- * forming the most and least signficant 16-bit words.
- */
-#define CombineUint16Pair(msw,lsw) (((uint32_t)(msw) << 16) | \
- (((lsw)) & 0xFFFF))
-
/* Return the minimum of (a) or (b). */
#define Min(a, b) (((a) < (b)) ? (a) : (b))