Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Aug 2019 08:32:45 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r350887 - stable/11/sys/dev/ow
Message-ID:  <201908120832.x7C8WjCX087251@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Mon Aug 12 08:32:45 2019
New Revision: 350887
URL: https://svnweb.freebsd.org/changeset/base/350887

Log:
  MFC r349883: owc_gpiobus: small formatting cleanup

Modified:
  stable/11/sys/dev/ow/owc_gpiobus.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/ow/owc_gpiobus.c
==============================================================================
--- stable/11/sys/dev/ow/owc_gpiobus.c	Mon Aug 12 08:28:26 2019	(r350886)
+++ stable/11/sys/dev/ow/owc_gpiobus.c	Mon Aug 12 08:32:45 2019	(r350887)
@@ -191,7 +191,7 @@ owc_gpiobus_write_one(device_t dev, struct ow_timing *
 	sc = device_get_softc(dev);
 	error = GETBUS(sc);
 	if (error != 0)
-		return error;
+		return (error);
 
 	critical_enter();
 
@@ -205,10 +205,10 @@ owc_gpiobus_write_one(device_t dev, struct ow_timing *
 	DELAY(t->t_slot - t->t_low1 + t->t_rec);
 
 	critical_exit();
-	
+
 	RELBUS(sc);
-	
-	return 0;
+
+	return (0);
 }
 
 /*
@@ -232,7 +232,7 @@ owc_gpiobus_write_zero(device_t dev, struct ow_timing 
 	sc = device_get_softc(dev);
 	error = GETBUS(sc);
 	if (error != 0)
-		return error;
+		return (error);
 
 	critical_enter();
 
@@ -248,8 +248,8 @@ owc_gpiobus_write_zero(device_t dev, struct ow_timing 
 	critical_exit();
 
 	RELBUS(sc);
-	
-	return 0;
+
+	return (0);
 }
 
 /*
@@ -277,7 +277,7 @@ owc_gpiobus_read_data(device_t dev, struct ow_timing *
 	sc = device_get_softc(dev);
 	error = GETBUS(sc);
 	if (error != 0)
-		return error;
+		return (error);
 
 	/* Force low for t_lowr microseconds */
 	then = sbinuptime();
@@ -309,8 +309,8 @@ owc_gpiobus_read_data(device_t dev, struct ow_timing *
 	} while ((now - then) / SBT_1US < t->t_slot);
 
 	RELBUS(sc);
-	
-	return 0;
+
+	return (error);
 }
 
 /*
@@ -338,10 +338,9 @@ owc_gpiobus_reset_and_presence(device_t dev, struct ow
 	sc = device_get_softc(dev);
 	error = GETBUS(sc);
 	if (error != 0)
-		return error;
-	
+		return (error);
 
-	/* 
+	/*
 	 * Read the current state of the bus. The steady state of an idle bus is
 	 * high. Badly wired buses that are missing the required pull up, or
 	 * that have a short circuit to ground cause all kinds of mischief when
@@ -353,7 +352,7 @@ owc_gpiobus_reset_and_presence(device_t dev, struct ow
 	if (buf == 0) {
 		*bit = -1;
 		RELBUS(sc);
-		return EIO;
+		return (EIO);
 	}
 
 	critical_enter();
@@ -384,12 +383,12 @@ owc_gpiobus_reset_and_presence(device_t dev, struct ow
 	if (buf == 0) {
 		*bit = -1;
 		RELBUS(sc);
-		return EIO;
+		return (EIO);
 	}
 
 	RELBUS(sc);
 
-	return 0;
+	return (0);
 }
 
 static devclass_t owc_gpiobus_devclass;



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