Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35fe2fc4 authored by Saeed Bishara's avatar Saeed Bishara Committed by Nicolas Pitre
Browse files

[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: default avatarSaeed Bishara <saeed@marvell.com>
Signed-off-by: default avatarNicolas Pitre <nico@fluxnic.net>
parent 1e4d2d3d
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -46,6 +46,7 @@ struct pci_sys_data {
					/* IRQ mapping				*/
					/* IRQ mapping				*/
	int		(*map_irq)(struct pci_dev *, u8, u8);
	int		(*map_irq)(struct pci_dev *, u8, u8);
	struct hw_pci	*hw;
	struct hw_pci	*hw;
	void		*private_data;	/* platform controller private data	*/
};
};


/*
/*