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:
Robert Moore 2013-09-18 08:34:22 -07:00
parent 581de77bc9
commit c2523c3f95

View File

@ -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 */