mirror of
https://github.com/acpica/acpica/
synced 2025-01-13 12:59:18 +03:00
Fix a macro for the hardware-reduced case
This fix repairs a version of a macro that is used for the hardware reduced case only. It adds a return statement to the macro definition so that the AcpiSrc translation will not completely delete the second line of the macro because it thinks that it is an empty block. It actually clarifies the use of the macro anyway.
This commit is contained in:
parent
581de77bc9
commit
c2523c3f95
@ -178,7 +178,7 @@ extern UINT8 AcpiGbl_DisableSsdtTableLoad;
|
||||
static ACPI_INLINE Prototype {return(AE_OK);}
|
||||
|
||||
#define ACPI_HW_DEPENDENT_RETURN_VOID(Prototype) \
|
||||
static ACPI_INLINE Prototype {}
|
||||
static ACPI_INLINE Prototype {return;}
|
||||
|
||||
#endif /* !ACPI_REDUCED_HARDWARE */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user