Skip to content

Commit

Permalink
Hardware: Cleanup the return values in AcpiSetWakingVector().
Browse files Browse the repository at this point in the history
The return statement in AcpiSetWakingVector() is wrong and this patch
corrects it. Lv Zheng.

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
  • Loading branch information
Lv Zheng committed Jun 18, 2015
1 parent ee92780 commit a04dbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/components/hardware/hwxfsleep.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ AcpiSetFirmwareWakingVector (

if (AcpiGbl_ReducedHardware)
{
return (AE_OK);
return_ACPI_STATUS (AE_OK);
}

if (AcpiGbl_Facs32)
Expand Down

0 comments on commit a04dbfa

Please sign in to comment.