summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-11-02 17:40:59 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-11-03 16:55:15 +0000
commit0a36178fa401508b6762b26d615ffe0d6344a88d (patch)
tree9f46f316bf1c6052768ecc2c14145b6cb8326643
parent6b93866f5ef5efae6542011ad1c84afc86f1bda1 (diff)
downloadcoreboot-0a36178fa401508b6762b26d615ffe0d6344a88d.tar.gz
coreboot-0a36178fa401508b6762b26d615ffe0d6344a88d.tar.bz2
coreboot-0a36178fa401508b6762b26d615ffe0d6344a88d.zip
soc/amd/stoneyridge/cpu: remove unneeded line break in get_cpu_count
The line length is no longer limited to 80 characters, so there's no need for that line break any more. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I7a8fb472f00e039f25a71ee526a3dd0bc6c754f6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58858 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
-rw-r--r--src/soc/amd/stoneyridge/cpu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/amd/stoneyridge/cpu.c b/src/soc/amd/stoneyridge/cpu.c
index 99b40a613188..06550327d868 100644
--- a/src/soc/amd/stoneyridge/cpu.c
+++ b/src/soc/amd/stoneyridge/cpu.c
@@ -39,8 +39,7 @@ static void pre_mp_init(void)
static int get_cpu_count(void)
{
- return (pci_read_config16(SOC_HT_DEV, D18F0_CPU_CNT) & CPU_CNT_MASK)
- + 1;
+ return (pci_read_config16(SOC_HT_DEV, D18F0_CPU_CNT) & CPU_CNT_MASK) + 1;
}
static const struct mp_ops mp_ops = {