From 9c0772255527d163b8ab3299fcad96473f59b7d9 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 18 Jun 2017 15:59:06 +0200 Subject: sb/amd/rs780/gfx.c: Add brackets around macro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Code checked manually Change-Id: I5a9596328c028d570303e9390c0133b19b97d683 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/20259 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans Reviewed-by: Paul Menzel Reviewed-by: Philippe Mathieu-Daudé --- src/southbridge/amd/rs780/gfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/southbridge/amd/rs780/gfx.c b/src/southbridge/amd/rs780/gfx.c index 52bc071d4c..02be1f327e 100644 --- a/src/southbridge/amd/rs780/gfx.c +++ b/src/southbridge/amd/rs780/gfx.c @@ -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) -- cgit v1.2.3