aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm/armv7/cache.c
diff options
context:
space:
mode:
authorLogan Carlson <logancarlson@google.com>2017-05-31 12:01:01 -0600
committerMartin Roth <martinroth@google.com>2017-07-21 20:40:27 +0000
commit50522254fbd063c7be6037a88e6712016a8586ab (patch)
treeec50055e421b99e45864de06987a5d8544cfb483 /src/arch/arm/armv7/cache.c
parent80358a1f478713861a3e66874a1ffb7cf259bd7c (diff)
arch/arm/armv7: Correct checkpatch errors
- Correct whitespace issues with files under arch/arm/armv7. - Fix comments and remove unnecessary line continuations in mmu.c Change-Id: I69d50030b07b1919555feca44967472922176a81 Signed-off-by: Logan Carlson <logancarlson@google.com> Reviewed-on: https://review.coreboot.org/19996 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/arch/arm/armv7/cache.c')
-rw-r--r--src/arch/arm/armv7/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/armv7/cache.c b/src/arch/arm/armv7/cache.c
index eea514bd4b..ef3ad018fc 100644
--- a/src/arch/arm/armv7/cache.c
+++ b/src/arch/arm/armv7/cache.c
@@ -84,7 +84,7 @@ static void dcache_op_mva(void const *addr, size_t len, enum dcache_op op)
dsb();
while ((void *)line < addr + len) {
- switch(op) {
+ switch (op) {
case OP_DCCIMVAC:
dccimvac(line);
break;