summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authorray <ray@FreeBSD.org>2013-07-10 10:15:38 +0000
committerray <ray@FreeBSD.org>2013-07-10 10:15:38 +0000
commitc50bcc38cc6bc63cdd456cf6dfbb80c464c8cdf6 (patch)
tree0a0e3baa762d36e64008e67f134a1e50544077f6 /sys/arm
parent28425e8270936f8abacdfe7d24a4e5605834b731 (diff)
downloadFreeBSD-src-c50bcc38cc6bc63cdd456cf6dfbb80c464c8cdf6.zip
FreeBSD-src-c50bcc38cc6bc63cdd456cf6dfbb80c464c8cdf6.tar.gz
Remove trailing whitespaces.
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/arm/trap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arm/arm/trap.c b/sys/arm/arm/trap.c
index 08b4396..761169c 100644
--- a/sys/arm/arm/trap.c
+++ b/sys/arm/arm/trap.c
@@ -238,7 +238,7 @@ data_abort_handler(trapframe_t *tf)
int error = 0;
struct ksig ksig;
struct proc *p;
-
+
/* Grab FAR/FSR before enabling interrupts */
far = cpu_faultaddress();
@@ -262,10 +262,10 @@ data_abort_handler(trapframe_t *tf)
if (user) {
td->td_pticks = 0;
- td->td_frame = tf;
+ td->td_frame = tf;
if (td->td_ucred != td->td_proc->p_ucred)
cred_update_thread(td);
-
+
}
/* Grab the current pcb */
pcb = td->td_pcb;
@@ -276,7 +276,7 @@ data_abort_handler(trapframe_t *tf)
if (__predict_true(tf->tf_spsr & F32_bit) == 0)
enable_interrupts(F32_bit);
}
-
+
/* Invoke the appropriate handler, if necessary */
if (__predict_false(data_aborts[fsr & FAULT_TYPE_MASK].func != NULL)) {
@@ -720,7 +720,7 @@ prefetch_abort_handler(trapframe_t *tf)
printf("prefetch abort handler: %p %p\n", (void*)tf->tf_pc,
(void*)tf->tf_usr_lr);
#endif
-
+
td = curthread;
p = td->td_proc;
PCPU_INC(cnt.v_trap);
@@ -937,7 +937,7 @@ swi_handler(trapframe_t *frame)
struct thread *td = curthread;
td->td_frame = frame;
-
+
td->td_pticks = 0;
/*
* Make sure the program counter is correctly aligned so we
OpenPOWER on IntegriCloud