repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
dev
/
eisa
/
eisabusprint.c
blob
0795c412ee61017c8cb78ebd385aee6a6955ceb5
1
2
#include <sys/cdefs.h>
3
__KERNEL_RCSID
(
0
,
"$NetBSD: eisabusprint.c,v 1.4 2006/10/12 01:30:57 christos Exp $"
);
4
5
#include <sys/param.h>
6
#include <sys/systm.h>
7
#include <sys/device.h>
8
#include <dev/eisa/eisavar.h>
9
10
int
11
eisabusprint
(
void
*
vea
,
const char
*
pnp
)
12
{
13
if
(
pnp
)
14
aprint_normal
(
"eisa at %s"
,
pnp
);
15
return
(
UNCONF
);
16
}