[coreboot-gerrit] Patch set updated for coreboot: libpayload/pci: Correct MASK macro names

Furquan Shaikh (furquan@google.com) gerrit at coreboot.org
Tue Jun 21 19:31:43 CEST 2016


Furquan Shaikh (furquan at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15270

-gerrit

commit 468f2d0b5672a93fdf222a617f7672ee591674d8
Author: Furquan Shaikh <furquan at google.com>
Date:   Sun Jun 19 23:22:26 2016 -0700

    libpayload/pci: Correct MASK macro names
    
    BUG=chrome-os-partner:54563
    
    Change-Id: I8ef1c595205fe46dd64357051eeb232e2bbbebc1
    Signed-off-by: Furquan Shaikh <furquan at google.com>
---
 payloads/libpayload/include/pci/pci.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/payloads/libpayload/include/pci/pci.h b/payloads/libpayload/include/pci/pci.h
index 47d62bc..6ce4dde 100644
--- a/payloads/libpayload/include/pci/pci.h
+++ b/payloads/libpayload/include/pci/pci.h
@@ -60,8 +60,8 @@
 #define PCI_BASE_ADDRESS_SPACE	1 // mask
 #define PCI_BASE_ADDRESS_SPACE_IO	1
 #define PCI_BASE_ADDRESS_SPACE_MEM	0
-#define PCI_BASE_ADDRESS_IO_MASK	~0xf
-#define PCI_BASE_ADDRESS_MEM_MASK	~0x3
+#define PCI_BASE_ADDRESS_MEM_MASK	~0xf
+#define PCI_BASE_ADDRESS_IO_MASK	~0x3
 
 #define PCI_ROM_ADDRESS		0x30
 #define PCI_ROM_ADDRESS1	0x38 // on bridges



More information about the coreboot-gerrit mailing list