diff options
| author | thorpej <thorpej@NetBSD.org> | 1997-04-16 23:41:53 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1997-04-16 23:41:53 +0000 |
| commit | 48b6d2a6f344ff6dfbcf75d757e199b9ab52ef4a (patch) | |
| tree | f78144fc60e976a45142a6bc29e747a08e074243 /sys/dev/ofw | |
| parent | 8338396bf48aa0e8d0d24704b4ba2f5cb958f5c3 (diff) | |
Update for no __BROKEN_INDIRECT_CONFIG.
Diffstat (limited to 'sys/dev/ofw')
| -rw-r--r-- | sys/dev/ofw/ofrtc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/ofw/ofrtc.c b/sys/dev/ofw/ofrtc.c index 1a3e4700b54..d7d5f0a7cb8 100644 --- a/sys/dev/ofw/ofrtc.c +++ b/sys/dev/ofw/ofrtc.c @@ -1,4 +1,4 @@ -/* $NetBSD: ofrtc.c,v 1.3 1996/10/13 01:38:14 christos Exp $ */ +/* $NetBSD: ofrtc.c,v 1.4 1997/04/16 23:41:53 thorpej Exp $ */ /* * Copyright (C) 1996 Wolfgang Solfrank. @@ -42,7 +42,7 @@ struct ofrtc_softc { int sc_ihandle; }; -static int ofrtcprobe __P((struct device *, void *, void *)); +static int ofrtcprobe __P((struct device *, struct cfdata *, void *)); static void ofrtcattach __P((struct device *, struct device *, void *)); struct cfattach ofrtc_ca = { @@ -56,7 +56,8 @@ struct cfdriver ofrtc_cd = { static int ofrtcprobe(parent, match, aux) struct device *parent; - void *match, *aux; + struct cfdata *match; + void *aux; { struct ofprobe *ofp = aux; char type[8]; |
