12 lines
318 B
C
12 lines
318 B
C
|
/* $NetBSD: autoconf.h,v 1.3 2011/10/18 23:25:20 dyoung Exp $ */
|
||
|
#ifndef _X86_AUTOCONF_H_
|
||
|
#define _X86_AUTOCONF_H_
|
||
|
|
||
|
#include <sys/device.h>
|
||
|
|
||
|
void device_pci_props_register(device_t, void *);
|
||
|
device_t device_pci_register(device_t, void *);
|
||
|
device_t device_isa_register(device_t, void *);
|
||
|
|
||
|
#endif /* _X86_AUTOCONF_H_ */
|