[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 01:29:40 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 ae3534bacdb23a978b0a73f65a6a97525edee5c4
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