mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
e1a3107b06
This patch adds PCI bridge support for the Marvell mv64x60 chip. We also provide the ability to read/write the mv64x60 hotswap register via sysfs if the hs_reg_valid property is set in the device tree. Signed-off-by: Dale Farnsworth <dale@farnsworth.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
12 lines
228 B
C
12 lines
228 B
C
#ifndef __MV64X60_H__
|
|
#define __MV64X60_H__
|
|
|
|
#include <linux/init.h>
|
|
|
|
extern void __init mv64x60_init_irq(void);
|
|
extern unsigned int mv64x60_get_irq(void);
|
|
|
|
extern void __init mv64x60_pci_init(void);
|
|
|
|
#endif /* __MV64X60_H__ */
|