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:
parent
6bb8ff4637
commit
9c07722555
|
@ -103,8 +103,8 @@ MMIORANGE MMIO[8], CreativeMMIO[8];
|
|||
#define CIM_DISABLEPORT 0x80000002
|
||||
|
||||
#define MMIO_ATTRIB_NP_ONLY 1
|
||||
#define MMIO_ATTRIB_BOTTOM_TO_TOP 1<<1
|
||||
#define MMIO_ATTRIB_SKIP_ZERO 1<<2
|
||||
#define MMIO_ATTRIB_BOTTOM_TO_TOP (1 << 1)
|
||||
#define MMIO_ATTRIB_SKIP_ZERO (1 << 2)
|
||||
|
||||
#ifdef DONT_TRUST_RESOURCE_ALLOCATION
|
||||
static MMIORANGE* AllocMMIO(MMIORANGE* pMMIO)
|
||||
|
|
Loading…
Reference in New Issue