summaryrefslogtreecommitdiffstats
path: root/src/arch
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-09-10 10:41:08 +0200
committerElyes Haouas <ehaouas@noos.fr>2023-09-11 21:31:16 +0000
commitb024e23cfd105b9db912337063dead677e4988d1 (patch)
treed37620476d9f4dc49271bb8074c2b7411180542e /src/arch
parenta4c74578ecd49d3d84743e08d4b4d8af5beea564 (diff)
downloadcoreboot-b024e23cfd105b9db912337063dead677e4988d1.tar.gz
coreboot-b024e23cfd105b9db912337063dead677e4988d1.tar.bz2
coreboot-b024e23cfd105b9db912337063dead677e4988d1.zip
arch/arm64: Remove space between function name and '('
Change-Id: I0cba99070f251d86679c068bb737c05178f4a7c5 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77771 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/arm64/div0.c2
-rw-r--r--src/arch/arm64/eabi_compat.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/arm64/div0.c b/src/arch/arm64/div0.c
index 6b31139a9e0c..f52a8324b43d 100644
--- a/src/arch/arm64/div0.c
+++ b/src/arch/arm64/div0.c
@@ -6,7 +6,7 @@ void __div0(void); // called from asm so no need for a prototype in a header
/* Replacement (=dummy) for GNU/Linux division-by zero handler */
/* recursion is ok here because we have no formats ... */
-void __div0 (void)
+void __div0(void)
{
printk(BIOS_EMERG, "DIVIDE BY ZERO! continuing ...\n");
}
diff --git a/src/arch/arm64/eabi_compat.c b/src/arch/arm64/eabi_compat.c
index e4e82fde260a..147cfcc86e87 100644
--- a/src/arch/arm64/eabi_compat.c
+++ b/src/arch/arm64/eabi_compat.c
@@ -3,8 +3,8 @@
* Utility functions needed for (some) EABI conformant tool chains.
*/
-int raise (int signum) __attribute__((used));
-int raise (int signum)
+int raise(int signum) __attribute__((used));
+int raise(int signum)
{
return 0;
}