summaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-09-10 10:38:22 +0200
committerElyes Haouas <ehaouas@noos.fr>2023-09-11 21:39:08 +0000
commitc54a967147c08d3ae80510f1a29704d798e8c804 (patch)
tree0615a891b855c7d0cd0a06cfa361966d202bf4ea /src/soc/intel/baytrail
parentd3bb087360c823deb6b59eb15b446b9d2afff2c0 (diff)
soc/intel: Remove space between function name and '('
Change-Id: I1dbfca33c437c680118eb3a92e60b5607c93e565 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77768 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/baytrail')
-rw-r--r--src/soc/intel/baytrail/include/soc/efi_wrapper.h4
-rw-r--r--src/soc/intel/baytrail/include/soc/mrc_wrapper.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/baytrail/include/soc/efi_wrapper.h b/src/soc/intel/baytrail/include/soc/efi_wrapper.h
index 4d2d86d3fb..854a3b9864 100644
--- a/src/soc/intel/baytrail/include/soc/efi_wrapper.h
+++ b/src/soc/intel/baytrail/include/soc/efi_wrapper.h
@@ -17,10 +17,10 @@ struct efi_wrapper_params {
/* Mainboard Inputs */
int version;
- void ABI_X86 (*console_out)(unsigned char byte);
+ void ABI_X86(*console_out)(unsigned char byte);
unsigned int tsc_ticks_per_microsecond;
} __packed;
-typedef int ABI_X86 (*efi_wrapper_entry_t)(struct efi_wrapper_params *);
+typedef int ABI_X86(*efi_wrapper_entry_t)(struct efi_wrapper_params *);
#endif
diff --git a/src/soc/intel/baytrail/include/soc/mrc_wrapper.h b/src/soc/intel/baytrail/include/soc/mrc_wrapper.h
index 9c979c11a5..f55a20133a 100644
--- a/src/soc/intel/baytrail/include/soc/mrc_wrapper.h
+++ b/src/soc/intel/baytrail/include/soc/mrc_wrapper.h
@@ -58,7 +58,7 @@ struct mrc_params {
struct mrc_mainboard_params mainboard;
- void ABI_X86 (*console_out)(unsigned char byte);
+ void ABI_X86(*console_out)(unsigned char byte);
int prev_sleep_state;
@@ -76,6 +76,6 @@ struct mrc_params {
} __packed;
/* Call into wrapper. */
-typedef int ABI_X86 (*mrc_wrapper_entry_t)(struct mrc_params *);
+typedef int ABI_X86(*mrc_wrapper_entry_t)(struct mrc_params *);
#endif /* _MRC_WRAPPER_H_ */