Module Name:    src
Committed By:   skrll
Date:           Tue Aug 25 13:36:41 UTC 2020

Modified Files:
        src/sys/dev/sbus: dbri.c

Log Message:
Style on config_finalize_register arguments - make consistent will all
other callers of config_finalize_register


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/dev/sbus/dbri.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/sbus/dbri.c
diff -u src/sys/dev/sbus/dbri.c:1.42 src/sys/dev/sbus/dbri.c:1.43
--- src/sys/dev/sbus/dbri.c:1.42	Sat Feb 29 06:06:29 2020
+++ src/sys/dev/sbus/dbri.c	Tue Aug 25 13:36:41 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: dbri.c,v 1.42 2020/02/29 06:06:29 isaki Exp $	*/
+/*	$NetBSD: dbri.c,v 1.43 2020/08/25 13:36:41 skrll Exp $	*/
 
 /*
  * Copyright (C) 1997 Rudolf Koenig ([email protected])
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dbri.c,v 1.42 2020/02/29 06:06:29 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dbri.c,v 1.43 2020/08/25 13:36:41 skrll Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0
@@ -372,7 +372,7 @@ dbri_attach_sbus(device_t parent, device
 	sc->sc_playing = 0;
 	sc->sc_recording = 0;
 	sc->sc_init_done = 0;
-	config_finalize_register(self, &dbri_config_interrupts);
+	config_finalize_register(self, dbri_config_interrupts);
 
 	return;
 }

Reply via email to