Module Name:    src
Committed By:   skrll
Date:           Mon Mar  6 11:10:23 UTC 2017

Modified Files:
        src/sys/arch/arm/include: cpu.h

Log Message:
Trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.90 -r1.91 src/sys/arch/arm/include/cpu.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/include/cpu.h
diff -u src/sys/arch/arm/include/cpu.h:1.90 src/sys/arch/arm/include/cpu.h:1.91
--- src/sys/arch/arm/include/cpu.h:1.90	Wed Apr 15 21:26:47 2015
+++ src/sys/arch/arm/include/cpu.h	Mon Mar  6 11:10:23 2017
@@ -104,7 +104,7 @@ extern int cpu_fpu_present;
 	((curcpu()->ci_intr_depth > 1) ||			\
 	    ((cf)->cf_tf.tf_spsr & PSR_MODE) == PSR_UND32_MODE)
 #else
-#define CLKF_INTR(cf)	((void)(cf), curcpu()->ci_intr_depth > 1) 
+#define CLKF_INTR(cf)	((void)(cf), curcpu()->ci_intr_depth > 1)
 #endif
 
 /*
@@ -202,7 +202,7 @@ _curlwp_set(struct lwp *l)
 	armreg_tpidrprw_write((uintptr_t)l);
 }
 
-// Also in <sys/lwp.h> but also here if this was included before <sys/lwp.h> 
+// Also in <sys/lwp.h> but also here if this was included before <sys/lwp.h>
 static inline struct cpu_info *lwp_getcpu(struct lwp *);
 
 #define	curlwp		_curlwp()
@@ -237,7 +237,7 @@ void cpu_boot_secondary_processors(void)
 #define CPU_IS_PRIMARY(ci)	((ci)->ci_index == 0)
 #define CPU_INFO_FOREACH(cii, ci)			\
 	cii = 0, ci = cpu_info[0]; cii < ncpu && (ci = cpu_info[cii]) != NULL; cii++
-#else 
+#else
 #define cpu_number()            0
 
 #define CPU_IS_PRIMARY(ci)	true
@@ -307,7 +307,7 @@ void	cpu_proc_fork(struct proc *, struct
 void	cpu_set_curpri(int);
 
 /*
- * We've already preallocated the stack for the idlelwps for additional CPUs.  
+ * We've already preallocated the stack for the idlelwps for additional CPUs.
  * This hook allows to return them.
  */
 vaddr_t cpu_uarea_alloc_idlelwp(struct cpu_info *);

Reply via email to