svn commit: r252427 - head/sys/arm/arm

Aleksandr Rybalko ray at FreeBSD.org
Sun Jun 30 19:53:52 UTC 2013


Author: ray
Date: Sun Jun 30 19:53:52 2013
New Revision: 252427
URL: http://svnweb.freebsd.org/changeset/base/252427

Log:
  Replace some spaces to tab.

Modified:
  head/sys/arm/arm/generic_timer.c

Modified: head/sys/arm/arm/generic_timer.c
==============================================================================
--- head/sys/arm/arm/generic_timer.c	Sun Jun 30 19:52:45 2013	(r252426)
+++ head/sys/arm/arm/generic_timer.c	Sun Jun 30 19:53:52 2013	(r252427)
@@ -241,7 +241,7 @@ arm_tmr_intr(void *arg)
 	sc = (struct arm_tmr_softc *)arg;
 	ctrl = get_ctrl();
 	if (ctrl & GENERIC_TIMER_CTRL_INT_STAT) {
-	        ctrl |= GENERIC_TIMER_CTRL_INT_MASK;
+		ctrl |= GENERIC_TIMER_CTRL_INT_MASK;
 		set_ctrl(ctrl);
 	}
 
@@ -305,7 +305,7 @@ arm_tmr_attach(device_t dev)
 	set_freq(sc->clkfreq);
 	disable_user_access();
 
-        arm_tmr_timecount.tc_frequency = sc->clkfreq;
+	arm_tmr_timecount.tc_frequency = sc->clkfreq;
 	tc_init(&arm_tmr_timecount);
 
 	sc->et.et_name = "ARM MPCore Eventtimer";
@@ -358,7 +358,7 @@ DELAY(int usec)
 	/*
 	 * Check the timers are setup, if not just
 	 * use a for loop for the meantime
-         */
+	 */
 	if (arm_tmr_sc == NULL) {
 		for (; usec > 0; usec--)
 			for (counts = 200; counts > 0; counts--)
@@ -371,7 +371,7 @@ DELAY(int usec)
 	}
 
 	/* Get the number of times to count */
-        counts_per_usec = ((arm_tmr_timecount.tc_frequency / 1000000) + 1);
+	counts_per_usec = ((arm_tmr_timecount.tc_frequency / 1000000) + 1);
 
 	/*
 	 * Clamp the timeout at a maximum value (about 32 seconds with


More information about the svn-src-all mailing list