This commit adds a new flag that allows marking resources as PCI configuration space.
Signed-off-by: Thierry Reding <[email protected]> --- Changes in v3: - new patch include/linux/ioport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/ioport.h b/include/linux/ioport.h index 589e0e7..3314843 100644 --- a/include/linux/ioport.h +++ b/include/linux/ioport.h @@ -102,7 +102,7 @@ struct resource { /* PCI control bits. Shares IORESOURCE_BITS with above PCI ROM. */ #define IORESOURCE_PCI_FIXED (1<<4) /* Do not move resource */ - +#define IORESOURCE_PCI_CS (1<<5) /* PCI configuration space */ /* helpers to define resources */ #define DEFINE_RES_NAMED(_start, _size, _name, _flags) \ -- 1.7.11.2 _______________________________________________ devicetree-discuss mailing list [email protected] https://lists.ozlabs.org/listinfo/devicetree-discuss
