Hello,
with linux_2_6_0_test9 include/asm-mips/pci.h I get these warnings:
include/asm/pci.h: In function `pci_dac_page_to_dma':
include/asm/pci.h:84: warning: implicit declaration of function
`dev_to_baddr'
include/asm/pci.h: In function `pci_dac_dma_to_page':
include/asm/pci.h:90: warning: implicit declaration of function
`baddr_to_dev'
dev_to_baddr and baddr_to_dev are defined in arch/mips/mm/dma-ip27.c and
therefore can't be included in pci.h.
Is it possible that in pci.h there is missing an appropriate #ifdef
around the pci_dac_* functions?
If I disable all pci_dac_* functions with #if 0, everything compiles
without problems.
Dirk