diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-26 01:40:50 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-26 01:40:50 +0000 |
commit | dcedd4374abb6f3456f8d6bc995601732ffaacf4 (patch) | |
tree | d1505a7186d140aa1f41f3c8e28a12c551ba400a /sys/dev/pci/if_sk.c | |
parent | f02c64296a18ec9595fe6efcb29e617c260ba9b9 (diff) |
return type on a dedicated line when declaring functions
ok mglocker@
Diffstat (limited to 'sys/dev/pci/if_sk.c')
-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 e9997ac70a8..7b85f1ce978 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.196 2024/05/24 06:02:57 jsg Exp $ */ +/* $OpenBSD: if_sk.c,v 1.197 2024/06/26 01:40:49 jsg Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -2083,7 +2083,8 @@ sk_init_xmac(struct sk_if_softc *sc_if) sc_if->sk_link = 1; } -void sk_init_yukon(struct sk_if_softc *sc_if) +void +sk_init_yukon(struct sk_if_softc *sc_if) { u_int32_t phy, v; u_int16_t reg; |