diff options
Diffstat (limited to 'arch/sh/drivers/pci/pci-sh4.h')
| -rw-r--r-- | arch/sh/drivers/pci/pci-sh4.h | 19 | 
1 files changed, 9 insertions, 10 deletions
diff --git a/arch/sh/drivers/pci/pci-sh4.h b/arch/sh/drivers/pci/pci-sh4.h index a83dcf70c13..3d5296cde62 100644 --- a/arch/sh/drivers/pci/pci-sh4.h +++ b/arch/sh/drivers/pci/pci-sh4.h @@ -149,13 +149,10 @@    #define SH4_PCIPDTR_PB0	  0x000000001	/* Port 0 Enable */  #define SH4_PCIPDR		0x220		/* Port IO Data Register */ -/* Flags */ -#define SH4_PCIC_NO_RESET	0x0001 -  /* arch/sh/kernel/drivers/pci/ops-sh4.c */  extern struct pci_ops sh4_pci_ops; -int sh4_pci_check_direct(void); -int pci_fixup_pcic(void); +int sh4_pci_check_direct(struct pci_channel *chan); +int pci_fixup_pcic(struct pci_channel *chan);  struct sh4_pci_address_space {  	unsigned long base; @@ -165,16 +162,18 @@ struct sh4_pci_address_space {  struct sh4_pci_address_map {  	struct sh4_pci_address_space window0;  	struct sh4_pci_address_space window1; -	unsigned long flags;  }; -static inline void pci_write_reg(unsigned long val, unsigned long reg) +static inline void pci_write_reg(struct pci_channel *chan, +				 unsigned long val, unsigned long reg)  { -	ctrl_outl(val, PCI_REG(reg)); +	ctrl_outl(val, chan->reg_base + reg);  } -static inline unsigned long pci_read_reg(unsigned long reg) +static inline unsigned long pci_read_reg(struct pci_channel *chan, +					 unsigned long reg)  { -	return ctrl_inl(PCI_REG(reg)); +	return ctrl_inl(chan->reg_base + reg);  } +  #endif /* __PCI_SH4_H */  |