Module Name:    src
Committed By:   skrll
Date:           Sat Aug 24 07:24:35 UTC 2024

Modified Files:
        src/sys/dev/cadence: if_cemac.c

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/cadence/if_cemac.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/cadence/if_cemac.c
diff -u src/sys/dev/cadence/if_cemac.c:1.28 src/sys/dev/cadence/if_cemac.c:1.29
--- src/sys/dev/cadence/if_cemac.c:1.28	Fri Jul  5 04:31:50 2024
+++ src/sys/dev/cadence/if_cemac.c	Sat Aug 24 07:24:34 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_cemac.c,v 1.28 2024/07/05 04:31:50 rin Exp $	*/
+/*	$NetBSD: if_cemac.c,v 1.29 2024/08/24 07:24:34 skrll Exp $	*/
 
 /*
  * Copyright (c) 2015  Genetec Corporation.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_cemac.c,v 1.28 2024/07/05 04:31:50 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_cemac.c,v 1.29 2024/08/24 07:24:34 skrll Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -389,7 +389,7 @@ cemac_intr(void *arg)
 		goto begin;
 #endif
 
-	return (1);
+	return 1;
 }
 
 
@@ -627,7 +627,7 @@ cemac_mediachange(struct ifnet *ifp)
 {
 	if (ifp->if_flags & IFF_UP)
 		cemac_ifinit(ifp);
-	return (0);
+	return 0;
 }
 
 static void

Reply via email to