Module Name:    src
Committed By:   maya
Date:           Mon Jan 15 12:58:06 UTC 2018

Modified Files:
        src/sys/dev/pci: mpii.c

Log Message:
indent to magic logic


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/mpii.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/pci/mpii.c
diff -u src/sys/dev/pci/mpii.c:1.10 src/sys/dev/pci/mpii.c:1.11
--- src/sys/dev/pci/mpii.c:1.10	Mon Oct  9 23:24:22 2017
+++ src/sys/dev/pci/mpii.c	Mon Jan 15 12:58:06 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: mpii.c,v 1.10 2017/10/09 23:24:22 maya Exp $ */
+/* $NetBSD: mpii.c,v 1.11 2018/01/15 12:58:06 maya Exp $ */
 /*	OpenBSD: mpii.c,v 1.51 2012/04/11 13:29:14 naddy Exp 	*/
 /*
  * Copyright (c) 2010 Mike Belopuhov <m...@crypt.org.ru>
@@ -20,7 +20,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mpii.c,v 1.10 2017/10/09 23:24:22 maya Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mpii.c,v 1.11 2018/01/15 12:58:06 maya Exp $");
 
 #include "bio.h"
 
@@ -4043,7 +4043,7 @@ mpii_dmamem_alloc(struct mpii_softc *sc,
 
 	mdm = malloc(sizeof(*mdm), M_DEVBUF, M_NOWAIT | M_ZERO);
 	if (mdm == NULL)
-	return (NULL);
+		return (NULL);
 
 	mdm->mdm_size = size;
 

Reply via email to