summaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorBob Moore2013-10-29 02:29:16 +0100
committerRafael J. Wysocki2013-10-30 12:24:20 +0100
commitc26f3c908091294e5909f5459b6682e10922c824 (patch)
tree7a4282c88f79b1008c93385615078d4e4ae01f14 /include/acpi
parentACPICA: Add history/line-editing for Unix/Linux systems. (diff)
downloadkernel-qcow2-linux-c26f3c908091294e5909f5459b6682e10922c824.tar.gz
kernel-qcow2-linux-c26f3c908091294e5909f5459b6682e10922c824.tar.xz
kernel-qcow2-linux-c26f3c908091294e5909f5459b6682e10922c824.zip
ACPICA: 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 translation into the Linux kernel source 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. Reported-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acpixf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h
index c7b1475422b3..ebab0d89c70b 100644
--- a/include/acpi/acpixf.h
+++ b/include/acpi/acpixf.h
@@ -106,7 +106,7 @@ extern u8 acpi_gbl_disable_ssdt_table_load;
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 */