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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
sys
/
dev
/
isa
/
isabusprint.c
blob
af25e1db1baaff76c98de4e676cd77c87d535d72
1
2
#include <sys/cdefs.h>
3
__KERNEL_RCSID
(
0
,
"$NetBSD: isabusprint.c,v 1.4 2006/10/12 01:31:17 christos Exp $"
);
4
5
#include <sys/param.h>
6
#include <sys/systm.h>
7
#include <sys/device.h>
8
#include <dev/isa/isavar.h>
9
10
int
11
isabusprint
(
void
*
via
,
const char
*
pnp
)
12
{
13
if
(
pnp
)
14
aprint_normal
(
"isa at %s"
,
pnp
);
15
return
(
UNCONF
);
16
}