diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2007-02-12 21:19:57 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2007-02-12 21:19:57 +0000 |
commit | bb25956fb050223be3724ad2129ef17b19d98cde (patch) | |
tree | 9714e9a010defafdb3d87ade82bed814684bcf39 /sys/dev | |
parent | b2a09da8cd1aded496ab6b196fc016ed735016d5 (diff) |
Fix prototype, from brad@, no binary change
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_sk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_sk.c b/sys/dev/pci/if_sk.c index 223491723c6..50ae51e18c7 100644 --- a/sys/dev/pci/if_sk.c +++ b/sys/dev/pci/if_sk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sk.c,v 1.138 2007/02/10 02:27:56 krw Exp $ */ +/* $OpenBSD: if_sk.c,v 1.139 2007/02/12 21:19:56 pedro Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -958,7 +958,8 @@ skc_probe(struct device *parent, void *match, void *aux) /* * Force the GEnesis into reset, then bring it out of reset. */ -void sk_reset(struct sk_softc *sc) +void +sk_reset(struct sk_softc *sc) { u_int32_t imtimer_ticks; |