summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authorray <ray@FreeBSD.org>2013-06-30 19:53:52 +0000
committerray <ray@FreeBSD.org>2013-06-30 19:53:52 +0000
commit1baf66368b5a2b6c89ed6036adbe81fec42e57a8 (patch)
tree5fe148580bae040895c82ddf55e060ac60feee8b /sys/arm
parente4c2fc3046400a4aacfe4b75983f17553e2f8aba (diff)
downloadFreeBSD-src-1baf66368b5a2b6c89ed6036adbe81fec42e57a8.zip
FreeBSD-src-1baf66368b5a2b6c89ed6036adbe81fec42e57a8.tar.gz
Replace some spaces to tab.
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/arm/generic_timer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arm/arm/generic_timer.c b/sys/arm/arm/generic_timer.c
index da4adcb..48d92ae 100644
--- a/sys/arm/arm/generic_timer.c
+++ b/sys/arm/arm/generic_timer.c
@@ -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
OpenPOWER on IntegriCloud