1 | /* $NetBSD: mpacpi.h,v 1.10 2013/03/31 19:45:06 chs Exp $ */ |
---|---|
2 | |
3 | #ifndef _X86_MPACPI_H_ |
4 | #define _X86_MPACPI_H_ |
5 | |
6 | struct pcibus_attach_args; |
7 | |
8 | int mpacpi_scan_apics(device_t, int *); |
9 | int mpacpi_find_interrupts(void *); |
10 | int mpacpi_pci_attach_hook(device_t, device_t, |
11 | struct pcibus_attach_args *); |
12 | |
13 | struct mp_intr_map; |
14 | int mpacpi_findintr_linkdev(struct mp_intr_map *); |
15 | |
16 | #endif /* _X86_MPACPI_H_ */ |
17 |