diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2022-08-01 09:50:03 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2022-08-01 09:50:03 +0000 |
commit | 26ec298b0b65ab08623cc96dd03042547a32e3fe (patch) | |
tree | 405cdff13b35e3b5d838f5223f9d1c550f8927c8 /sys/dev/fdt | |
parent | 20b5c334cffb448b942ffb22c46eb8376cb08572 (diff) |
KNF
Diffstat (limited to 'sys/dev/fdt')
-rw-r--r-- | sys/dev/fdt/simpleaudio.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/fdt/simpleaudio.c b/sys/dev/fdt/simpleaudio.c index 64559ca5759..2b904c2287b 100644 --- a/sys/dev/fdt/simpleaudio.c +++ b/sys/dev/fdt/simpleaudio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: simpleaudio.c,v 1.5 2022/04/06 18:59:28 naddy Exp $ */ +/* $OpenBSD: simpleaudio.c,v 1.6 2022/08/01 09:50:02 kettenis Exp $ */ /* * Copyright (c) 2020 Patrick Wildt <patrick@blueri.se> * @@ -541,7 +541,8 @@ simpleaudio_trigger_input(void *cookie, void *start, void *end, int blksize, return 0; } -int simpleaudio_halt_output(void *cookie) +int +simpleaudio_halt_output(void *cookie) { struct simpleaudio_softc *sc = cookie; struct dai_device *dai; @@ -568,7 +569,8 @@ int simpleaudio_halt_output(void *cookie) return 0; } -int simpleaudio_halt_input(void *cookie) +int +simpleaudio_halt_input(void *cookie) { struct simpleaudio_softc *sc = cookie; struct dai_device *dai; |