summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-04-29 17:50:59 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-05-02 13:55:29 +0000
commit0ec0aa74154ddf9d82e8e26fd6ce19d144d6c9cc (patch)
treee414f06abbca13c166adea83c921f4b60cedc3e1
parent99f800cec0188386ecdd859eef983a8a3d12dc87 (diff)
downloadcoreboot-0ec0aa74154ddf9d82e8e26fd6ce19d144d6c9cc.tar.gz
coreboot-0ec0aa74154ddf9d82e8e26fd6ce19d144d6c9cc.tar.bz2
coreboot-0ec0aa74154ddf9d82e8e26fd6ce19d144d6c9cc.zip
soc/amd/common/block/psp/psp: remove unneeded line break
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I0f2fa245be6f7fabde53bfc45c1af73fa13fe862 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63961 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/soc/amd/common/block/psp/psp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/psp/psp.c b/src/soc/amd/common/block/psp/psp.c
index 66f7d5922400..f989a3b00775 100644
--- a/src/soc/amd/common/block/psp/psp.c
+++ b/src/soc/amd/common/block/psp/psp.c
@@ -77,5 +77,4 @@ static void psp_notify_boot_done(void *unused)
psp_print_cmd_status(cmd_status, &buffer.header);
}
-BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY,
- psp_notify_boot_done, NULL);
+BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, psp_notify_boot_done, NULL);