mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-16 10:47:54 -04:00
21 lines
558 B
C
21 lines
558 B
C
/* $NetBSD: pci_machdep.c,v 1.6 2011/07/01 18:46:35 dyoung Exp $ */
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.6 2011/07/01 18:46:35 dyoung Exp $");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/device.h>
|
|
|
|
#define _MIPS_BUS_DMA_PRIVATE
|
|
#include <sys/bus.h>
|
|
|
|
/*
|
|
* PCI doesn't have any special needs; just use
|
|
* the generic versions of these functions.
|
|
*/
|
|
struct mips_bus_dma_tag pci_bus_dma_tag = {
|
|
._dmamap_ops = _BUS_DMAMAP_OPS_INITIALIZER,
|
|
._dmamem_ops = _BUS_DMAMEM_OPS_INITIALIZER,
|
|
._dmatag_ops = _BUS_DMATAG_OPS_INITIALIZER,
|
|
};
|