Cr50: cleanup: put macro args inside parens

Just to be safe...

BUG=none
BRANCH=none
TEST=make buildall; try on Cr50 board

Change-Id: I5b605a50f85dbfeb404fa93b59d795b7f8a0d5c5
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/332197
Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
This commit is contained in:
Bill Richardson
2016-03-04 16:10:32 -08:00
committed by chrome-bot
parent 5ed0b29cec
commit 1c0b8dc816

View File

@@ -25,7 +25,7 @@
* two GPIOs to the same input and configure each one for a separate edge.
*/
#define GPIO_INT(name, pin, flags, signal) \
BUILD_ASSERT((flags & GPIO_INT_BOTH) != GPIO_INT_BOTH);
BUILD_ASSERT(((flags) & GPIO_INT_BOTH) != GPIO_INT_BOTH);
#include "gpio.wrap"
static void init_pmu(void)