diff options
Diffstat (limited to 'include/asm-sh/pci.h')
| -rw-r--r-- | include/asm-sh/pci.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-sh/pci.h b/include/asm-sh/pci.h index 9c3b63d0105e..26044889c770 100644 --- a/include/asm-sh/pci.h +++ b/include/asm-sh/pci.h @@ -96,6 +96,16 @@ static inline void pcibios_penalize_isa_irq(int irq)  #define sg_dma_address(sg)	(virt_to_bus((sg)->dma_address))  #define sg_dma_len(sg)		((sg)->length) +#ifdef CONFIG_PCI +static inline void pci_dma_burst_advice(struct pci_dev *pdev, +					enum pci_dma_burst_strategy *strat, +					unsigned long *strategy_parameter) +{ +	*strat = PCI_DMA_BURST_INFINITY; +	*strategy_parameter = ~0UL; +} +#endif +  /* Board-specific fixup routines. */  extern void pcibios_fixup(void);  extern void pcibios_fixup_irqs(void);  | 
