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