diff options
author | Saeed Bishara <saeed@marvell.com> | 2010-06-03 07:58:46 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2010-07-16 22:01:59 -0400 |
commit | 35fe2fc44ac4202261317ccce2ef69991bc01c57 (patch) | |
tree | 8b0c86d96fa2c36a5e9201a95f38b47351632fd1 /arch/arm/include/asm/mach | |
parent | 1e4d2d3da3bd0ccd3b6cb2b77624fd9233ca0a88 (diff) |
[ARM] PCI: add platform private data to pci_sys_data
Add private_data pointer to the pci_sys_data, this pointer can be
used for holding platform specific data for each pci controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
Diffstat (limited to 'arch/arm/include/asm/mach')
-rw-r--r-- | arch/arm/include/asm/mach/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/pci.h b/arch/arm/include/asm/mach/pci.h index 52f0da1e97df..16330bd0657c 100644 --- a/arch/arm/include/asm/mach/pci.h +++ b/arch/arm/include/asm/mach/pci.h | |||
@@ -46,6 +46,7 @@ struct pci_sys_data { | |||
46 | /* IRQ mapping */ | 46 | /* IRQ mapping */ |
47 | int (*map_irq)(struct pci_dev *, u8, u8); | 47 | int (*map_irq)(struct pci_dev *, u8, u8); |
48 | struct hw_pci *hw; | 48 | struct hw_pci *hw; |
49 | void *private_data; /* platform controller private data */ | ||
49 | }; | 50 | }; |
50 | 51 | ||
51 | /* | 52 | /* |