Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jul 2012 11:22:33 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r238531 - user/ae/bootcode/sys/boot/i386/loader
Message-ID:  <201207161122.q6GBMXL1035722@svn.freebsd.org>

index | next in thread | raw e-mail

Author: ae
Date: Mon Jul 16 11:22:33 2012
New Revision: 238531
URL: http://svn.freebsd.org/changeset/base/238531

Log:
  Preserve indents in the style of entire file.
  
  Requested by:	avg

Modified:
  user/ae/bootcode/sys/boot/i386/loader/main.c

Modified: user/ae/bootcode/sys/boot/i386/loader/main.c
==============================================================================
--- user/ae/bootcode/sys/boot/i386/loader/main.c	Mon Jul 16 10:53:49 2012	(r238530)
+++ user/ae/bootcode/sys/boot/i386/loader/main.c	Mon Jul 16 11:22:33 2012	(r238531)
@@ -355,18 +355,18 @@ isa_outb(int port, int value)
 static void
 i386_zfs_probe(void)
 {
-	char devname[32];
-	int unit;
+    char devname[32];
+    int unit;
 
-	/*
-	 * Open all the disks we can find and see if we can reconstruct
-	 * ZFS pools from them.
-	 */
-	for (unit = 0; unit < MAXBDDEV; unit++) {
-		if (bd_unit2bios(unit) == -1)
-			break;
-		sprintf(devname, "disk%d:", unit);
-		zfs_probe_dev(devname, NULL);
-	}
+    /*
+     * Open all the disks we can find and see if we can reconstruct
+     * ZFS pools from them.
+     */
+    for (unit = 0; unit < MAXBDDEV; unit++) {
+	if (bd_unit2bios(unit) == -1)
+	    break;
+	sprintf(devname, "disk%d:", unit);
+	zfs_probe_dev(devname, NULL);
+    }
 }
 #endif


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207161122.q6GBMXL1035722>