mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and can be confusing when reading the code. Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used for system memory mapping purposes. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
64ace0d1e5
commit
ff4e66e93c
32 changed files with 43 additions and 43 deletions
|
@ -334,7 +334,7 @@ struct pci_region {
|
|||
#define PCI_REGION_TYPE 0x00000001
|
||||
#define PCI_REGION_PREFETCH 0x00000008 /* prefetchable PCI memory */
|
||||
|
||||
#define PCI_REGION_MEMORY 0x00000100 /* System memory */
|
||||
#define PCI_REGION_SYS_MEMORY 0x00000100 /* System memory */
|
||||
#define PCI_REGION_RO 0x00000200 /* Read-only memory */
|
||||
|
||||
extern __inline__ void pci_set_region(struct pci_region *reg,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue