Home | History | Annotate | Line # | Download | only in include
mpacpi.h revision 1.6
      1 /*	$NetBSD: mpacpi.h,v 1.6 2007/10/17 19:58:15 garbled Exp $	*/
      2 
      3 #ifndef _X86_MPACPI_H_
      4 #define _X86_MPACPI_H_
      5 
      6 struct pcibus_attach_args;
      7 
      8 int mpacpi_scan_apics(struct device *, int *, int *);
      9 int mpacpi_find_interrupts(void *);
     10 int mpacpi_pci_attach_hook(struct device *, struct device *,
     11 			   struct pcibus_attach_args *);
     12 int mpacpi_scan_pci(struct device *, struct pcibus_attach_args *, cfprint_t);
     13 
     14 struct mp_intr_map;
     15 int mpacpi_findintr_linkdev(struct mp_intr_map *);
     16 
     17 extern struct mp_intr_map *mpacpi_sci_override;
     18 
     19 #endif /* _X86_MPACPI_H_ */
     20