nb/intel/fsp_rangeley/port_access.c: Add brackets around macro
Code checked manually Change-Id: Idf86546ddda4fa2b4b96f0b703c03af9931c757d Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/20251 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
7c4a8e57dc
commit
106e28582c
|
@ -43,8 +43,8 @@
|
|||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#define MSG_OPCODE_READ 0x10 << 24
|
||||
#define MSG_OPCODE_WRITE 0x11 << 24
|
||||
#define MSG_OPCODE_READ (0x10 << 24)
|
||||
#define MSG_OPCODE_WRITE (0x11 << 24)
|
||||
|
||||
#define MCR 0xD0
|
||||
#define MDR 0xD4
|
||||
|
|
Loading…
Reference in New Issue