From 05ff8d177f87007df0579952d6cce421b494198b Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Sun, 27 Feb 2022 09:10:26 +0000 Subject: libmachdev: No-op fix styling of functions Message-Id: <20220227091013.33112-2-damien@zamaudio.com> --- libmachdev/ds_routines.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c index 139551f6..e89ceee0 100644 --- a/libmachdev/ds_routines.c +++ b/libmachdev/ds_routines.c @@ -302,7 +302,8 @@ machdev_create_device_port (size_t size, void *result) size, result); } -void machdev_device_init() +void +machdev_device_init() { int i; @@ -316,7 +317,8 @@ void machdev_device_init() } } -void machdev_device_sync() +void +machdev_device_sync() { int i; for (i = 0; i < num_emul; i++) @@ -340,13 +342,15 @@ demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) return FALSE; } -void machdev_register (struct machdev_device_emulation_ops *ops) +void +machdev_register (struct machdev_device_emulation_ops *ops) { assert(num_emul < MAX_NUM_EMULATION-1); emulation_list[num_emul++] = ops; } -void * machdev_server(void *arg) +void * +machdev_server(void *arg) { /* Launch. */ do -- cgit v1.2.3