From: NIIBE Y. <gn...@m1...> - 2002-01-15 08:47:55
|
Is this correct? * include/asm-sh/pci.h (PCI_DMA_BUS_IS_PHYS): Added. Index: include/asm-sh/pci.h =================================================================== RCS file: /cvsroot/linuxsh/linux/include/asm-sh/pci.h,v retrieving revision 1.2 diff -u -3 -p -r1.2 pci.h --- include/asm-sh/pci.h 2001/10/30 23:22:36 1.2 +++ include/asm-sh/pci.h 2002/01/15 08:46:06 @@ -44,6 +44,12 @@ static inline void pcibios_penalize_isa_ * SuperH has everything mapped statically like x86. */ +/* The PCI address space does equal the physical memory + * address space. The networking and block device layers use + * this boolean for bounce buffer decisions. + */ +#define PCI_DMA_BUS_IS_PHYS (1) + #include <linux/types.h> #include <linux/slab.h> #include <asm/scatterlist.h> |