https://git.reactos.org/?p=reactos.git;a=commitdiff;h=789a296c43d2e89d1b422a...
commit 789a296c43d2e89d1b422af8c0d1ab9aa9e3ef8c Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sun Jun 4 20:03:28 2023 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sun Jun 4 21:40:03 2023 +0200
[SDK:XBOX] Add missing 'VOID' in empty function prototypes. --- sdk/include/reactos/drivers/xbox/superio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sdk/include/reactos/drivers/xbox/superio.h b/sdk/include/reactos/drivers/xbox/superio.h index 2e1d9480103..fdc1ad5f5b7 100644 --- a/sdk/include/reactos/drivers/xbox/superio.h +++ b/sdk/include/reactos/drivers/xbox/superio.h @@ -93,7 +93,7 @@ LpcDetectSuperIO(VOID)
FORCEINLINE ULONG -LpcGetIoBase() +LpcGetIoBase(VOID) { ULONG Base = 0;
@@ -108,7 +108,7 @@ LpcGetIoBase() #ifndef _BLDR_ FORCEINLINE ULONG -LpcGetIoBaseMPU() +LpcGetIoBaseMPU(VOID) { ULONG Base = 0;
@@ -123,7 +123,7 @@ LpcGetIoBaseMPU()
FORCEINLINE ULONG -LpcGetIrqPrimary() +LpcGetIrqPrimary(VOID) { return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_PRIMARY); } @@ -131,14 +131,14 @@ LpcGetIrqPrimary() #ifndef _BLDR_ FORCEINLINE ULONG -LpcGetIrqSecondary() +LpcGetIrqSecondary(VOID) { return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_SECONDARY); }
FORCEINLINE ULONG -LpcGetDmaChannel() +LpcGetDmaChannel(VOID) { return LpcReadRegister(LPC_CONFIG_DEVICE_DMA_CHANNEL); }