From 000ae5faa84c52e85e5d36b8e755257def90de5c Mon Sep 17 00:00:00 2001 From: Joel Kitching Date: Tue, 25 Jun 2019 15:51:30 +0800 Subject: vboot: remove unused CombineUint16Pair function BUG=b:124141368 TEST=make clean && make runtests BRANCH=none Change-Id: Ifd7dcc1414248b025a8a4bc2942db11814bc8be5 Signed-off-by: Joel Kitching Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1675865 Reviewed-by: Julius Werner Tested-by: Joel Kitching Commit-Queue: Joel Kitching --- firmware/lib/include/utility.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'firmware/lib/include') 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)) -- cgit v1.2.1