svn commit: r354183 - head/sys/dev/ow

Andriy Gapon avg at FreeBSD.org
Wed Oct 30 15:36:42 UTC 2019


Author: avg
Date: Wed Oct 30 15:36:41 2019
New Revision: 354183
URL: https://svnweb.freebsd.org/changeset/base/354183

Log:
  ow(4): clean up stray white space
  
  MFC after:	2 weeks

Modified:
  head/sys/dev/ow/ow.c

Modified: head/sys/dev/ow/ow.c
==============================================================================
--- head/sys/dev/ow/ow.c	Wed Oct 30 15:30:40 2019	(r354182)
+++ head/sys/dev/ow/ow.c	Wed Oct 30 15:36:41 2019	(r354183)
@@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$");
 typedef int ow_enum_fn(device_t, device_t);
 typedef int ow_found_fn(device_t, romid_t);
 
-struct ow_softc 
+struct ow_softc
 {
 	device_t	dev;		/* Newbus driver back pointer */
 	struct mtx	mtx;		/* bus mutex */
@@ -212,7 +212,7 @@ static void
 ow_send_byte(device_t lldev, struct ow_timing *t, uint8_t byte)
 {
 	int i;
-	
+
 	for (i = 0; i < 8; i++)
 		if (byte & (1 << i))
 			OWLL_WRITE_ONE(lldev, t);
@@ -226,7 +226,7 @@ ow_read_byte(device_t lldev, struct ow_timing *t, uint
 	int i;
 	uint8_t byte = 0;
 	int bit;
-	
+
 	for (i = 0; i < 8; i++) {
 		OWLL_READ_DATA(lldev, t, &bit);
 		byte |= bit << i;


More information about the svn-src-all mailing list