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_iwx.c | |
parent | f02c64296a18ec9595fe6efcb29e617c260ba9b9 (diff) |
return type on a dedicated line when declaring functions
ok mglocker@
Diffstat (limited to 'sys/dev/pci/if_iwx.c')
-rw-r--r-- | sys/dev/pci/if_iwx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwx.c b/sys/dev/pci/if_iwx.c index b692620777e..f3c693a838c 100644 --- a/sys/dev/pci/if_iwx.c +++ b/sys/dev/pci/if_iwx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwx.c,v 1.186 2024/05/24 06:02:53 jsg Exp $ */ +/* $OpenBSD: if_iwx.c,v 1.187 2024/06/26 01:40:49 jsg Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh <info@genua.de> @@ -597,7 +597,8 @@ iwx_ctxt_info_alloc_dma(struct iwx_softc *sc, return 0; } -void iwx_ctxt_info_free_paging(struct iwx_softc *sc) +void +iwx_ctxt_info_free_paging(struct iwx_softc *sc) { struct iwx_self_init_dram *dram = &sc->init_dram; int i; |