soc/intel: Guard macro parameters in pm.h

Guard against unintended operator precedence and associativity issues.

Change-Id: I342682a57fde9942cdf7be10756ee21c10af802a
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50917
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Angel Pons
2021-02-19 16:08:36 +01:00
committed by Patrick Georgi
parent b0f52fb5bf
commit d3a65deb25
4 changed files with 9 additions and 9 deletions

View File

@@ -86,7 +86,7 @@
#define GPE0_REG_MAX 4
#define GPE0_REG_SIZE 32
#define GPE0_STS(x) (0x80 + (x * 4))
#define GPE0_STS(x) (0x80 + ((x) * 4))
#define GPE_31_0 0 /* 0x80/0x90 = GPE[31:0] */
#define GPE_63_32 1 /* 0x84/0x94 = GPE[63:32] */
#define GPE_95_64 2 /* 0x88/0x98 = GPE[95:64] */
@@ -105,7 +105,7 @@
#define TCOSCI_STS (1 << 6)
#define SWGPE_STS (1 << 2)
#define HOT_PLUG_STS (1 << 1)
#define GPE0_EN(x) (0x90 + (x * 4))
#define GPE0_EN(x) (0x90 + ((x) * 4))
#define WADT_EN (1 << 18)
#define LAN_WAK_EN (1 << 16)
#define GPIO_T2_EN (1 << 15)