18 lines
338 B
C
18 lines
338 B
C
/* $NetBSD: autoconf.h,v 1.2 2011/02/20 07:48:35 matt Exp $ */
|
|
|
|
#ifndef _EVBMIPS_RMIXL_AUTOCONF_H_
|
|
#define _EVBMIPS_RMIXL_AUTOCONF_H_
|
|
|
|
struct mainbus_softc {
|
|
device_t sc_dev;
|
|
int sc_node_next;
|
|
uint64_t sc_node_mask;
|
|
};
|
|
|
|
struct mainbus_attach_args {
|
|
const char *ma_name;
|
|
int ma_node;
|
|
};
|
|
|
|
#endif /* _EVBMIPS_RMIXL_AUTOCONF_H_ */
|