summaryrefslogtreecommitdiff
path: root/src/cpu/amd
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2016-03-30 13:30:12 -0600
committerMartin Roth <martinroth@google.com>2016-03-31 23:05:32 +0200
commite35db2c6eb66945d443f60ad2ba6e0e0fed27ad1 (patch)
treef2dc25a412a5794f9bf5eb06355d28dad400cd40 /src/cpu/amd
parentc00f4d669dd03bf5a4ee8c255bb71fc86f229239 (diff)
downloadcoreboot-e35db2c6eb66945d443f60ad2ba6e0e0fed27ad1.tar.xz
src/: Fix lint style-labels warnings
The lint-stable-004-style-labels check tries to verify that labels in c and asm files start at the first column, and don't have whitespace in front of them. This fixes the 2 actual violations of the lint check. Change-Id: Ia11a90d7301e62a116c7a9ef9b4c2bc3f982b308 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/14193 Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/amd')
-rw-r--r--src/cpu/amd/family_10h-family_15h/processor_name.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/family_10h-family_15h/processor_name.c b/src/cpu/amd/family_10h-family_15h/processor_name.c
index ac0392b7d9..3d92ee2fd4 100644
--- a/src/cpu/amd/family_10h-family_15h/processor_name.c
+++ b/src/cpu/amd/family_10h-family_15h/processor_name.c
@@ -340,7 +340,7 @@ int init_processor_name(void)
}
}
- done:
+done:
strcpymax(&program_string[j], processor_name_string,
sizeof(program_string) - j);
}