svn commit: r365152 - head/sys/dev/smc

Mateusz Guzik mjg at FreeBSD.org
Tue Sep 1 21:52:50 UTC 2020


Author: mjg
Date: Tue Sep  1 21:52:46 2020
New Revision: 365152
URL: https://svnweb.freebsd.org/changeset/base/365152

Log:
  smc: clean up empty lines in .c and .h files

Modified:
  head/sys/dev/smc/if_smc.c
  head/sys/dev/smc/if_smcvar.h

Modified: head/sys/dev/smc/if_smc.c
==============================================================================
--- head/sys/dev/smc/if_smc.c	Tue Sep  1 21:52:35 2020	(r365151)
+++ head/sys/dev/smc/if_smc.c	Tue Sep  1 21:52:46 2020	(r365152)
@@ -434,10 +434,10 @@ smc_detach(device_t dev)
 	if (sc->smc_ifp != NULL) {
 		ether_ifdetach(sc->smc_ifp);
 	}
-	
+
 	callout_drain(&sc->smc_watchdog);
 	callout_drain(&sc->smc_mii_tick_ch);
-	
+
 #ifdef DEVICE_POLLING
 	if (sc->smc_ifp->if_capenable & IFCAP_POLLING)
 		ether_poll_deregister(sc->smc_ifp);
@@ -491,7 +491,6 @@ static device_method_t smc_methods[] = {
 	DEVMETHOD(miibus_readreg,	smc_miibus_readreg),
 	DEVMETHOD(miibus_writereg,	smc_miibus_writereg),
 	DEVMETHOD(miibus_statchg,	smc_miibus_statchg),
-
 	{ 0, 0 }
 };
 
@@ -603,7 +602,7 @@ smc_task_tx(void *context, int pending)
 	sc = ifp->if_softc;
 
 	SMC_LOCK(sc);
-	
+
 	if (sc->smc_pending == NULL) {
 		SMC_UNLOCK(sc);
 		goto next_packet;
@@ -722,7 +721,7 @@ smc_task_rx(void *context, int pending)
 			m_freem(m);
 			break;
 		}
-	
+
 		/*
 		 * Point to the start of the packet.
 		 */
@@ -749,14 +748,14 @@ smc_task_rx(void *context, int pending)
 			m_freem(m);
 			break;
 		}
-	
+
 		/*
 		 * Set the mbuf up the way we want it.
 		 */
 		m->m_pkthdr.rcvif = ifp;
 		m->m_pkthdr.len = m->m_len = len + 2; /* XXX: Is this right? */
 		m_adj(m, ETHER_ALIGN);
-	
+
 		/*
 		 * Pull the packet out of the device.  Make sure we're in the
 		 * right bank first as things may have changed while we were
@@ -865,7 +864,7 @@ smc_task_intr(void *context, int pending)
 	sc = ifp->if_softc;
 
 	SMC_LOCK(sc);
-	
+
 	smc_select_bank(sc, 2);
 
 	/*
@@ -1255,7 +1254,7 @@ static void
 smc_watchdog(void *arg)
 {
 	struct smc_softc	*sc;
-	
+
 	sc = (struct smc_softc *)arg;
 	device_printf(sc->smc_dev, "watchdog timeout\n");
 	taskqueue_enqueue(sc->smc_tq, &sc->smc_intr);

Modified: head/sys/dev/smc/if_smcvar.h
==============================================================================
--- head/sys/dev/smc/if_smcvar.h	Tue Sep  1 21:52:35 2020	(r365151)
+++ head/sys/dev/smc/if_smcvar.h	Tue Sep  1 21:52:46 2020	(r365152)
@@ -53,7 +53,7 @@ struct smc_softc {
 	struct task		smc_tx;
 	struct mbuf		*smc_pending;
 	struct callout		smc_watchdog;
-	
+
 	/* MII support */
 	device_t		smc_miibus;
 	struct callout		smc_mii_tick_ch;


More information about the svn-src-all mailing list