diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-01-25 11:51:43 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-26 23:57:12 +0000 |
commit | eb9e63f21f44598027105a641fd72c67c44e7a7d (patch) | |
tree | b479d526143ec466c5f041fc7cac07294a066cdc /src/device/oprom/yabel | |
parent | 98d76cb7080dc5d0ed8350285c1f0f24fab59d12 (diff) |
src: Add missing 'void' in function definition
Change-Id: I7fa1f9402b177a036f08bf99c98a6191c35fa0b5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61371
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/device/oprom/yabel')
-rw-r--r-- | src/device/oprom/yabel/pmm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/oprom/yabel/pmm.c b/src/device/oprom/yabel/pmm.c index d7e1f7beba..e30a86b52e 100644 --- a/src/device/oprom/yabel/pmm.c +++ b/src/device/oprom/yabel/pmm.c @@ -104,7 +104,7 @@ u8 pmm_setup(u16 segment, u16 offset) /* handle the selfdefined interrupt, this is executed, when the PMM Entry Point * is executed, it must handle all PMM requests */ -void pmm_handleInt() +void pmm_handleInt(void) { u32 rval = 0; u16 function, flags; |