blob: 11228e38204a353ab80e1d3dec1d4414d12f300a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $NetBSD: mpacpi.h,v 1.2 2003/05/29 20:22:32 fvdl Exp $ */
#ifndef _I386_MPACPI_H
#define _I386_MPACPI_H
struct pcibus_attach_args;
int mpacpi_scan_apics(struct device *);
int mpacpi_find_interrupts(void *);
int mpacpi_pci_attach_hook(struct device *, struct device *,
struct pcibus_attach_args *);
int mpacpi_scan_pci(struct device *, struct pcibus_attach_args *, cfprint_t);
#endif /* _I386_MPACPI_H */
|