sb/amd/rs780/gfx.c: Add brackets around macro

Code checked manually

Change-Id: I5a9596328c028d570303e9390c0133b19b97d683
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/20259
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
Elyes HAOUAS 2017-06-18 15:59:06 +02:00 committed by Martin Roth
parent 6bb8ff4637
commit 9c07722555
1 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ MMIORANGE MMIO[8], CreativeMMIO[8];
#define CIM_DISABLEPORT 0x80000002 #define CIM_DISABLEPORT 0x80000002
#define MMIO_ATTRIB_NP_ONLY 1 #define MMIO_ATTRIB_NP_ONLY 1
#define MMIO_ATTRIB_BOTTOM_TO_TOP 1<<1 #define MMIO_ATTRIB_BOTTOM_TO_TOP (1 << 1)
#define MMIO_ATTRIB_SKIP_ZERO 1<<2 #define MMIO_ATTRIB_SKIP_ZERO (1 << 2)
#ifdef DONT_TRUST_RESOURCE_ALLOCATION #ifdef DONT_TRUST_RESOURCE_ALLOCATION
static MMIORANGE* AllocMMIO(MMIORANGE* pMMIO) static MMIORANGE* AllocMMIO(MMIORANGE* pMMIO)