Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Oct 2019 15:36:42 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r354183 - head/sys/dev/ow
Message-ID:  <201910301536.x9UFagtb096915@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



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