Deleted Added
sdiff udiff text old ( 233250 ) new ( 238381 )
full compact
1/******************************************************************************
2 *
3 * Name: hwxfsleep.c - ACPI Hardware Sleep/Wake External Interfaces
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 87 unchanged lines hidden (view full) ---

96
97ACPI_STATUS
98AcpiSetFirmwareWakingVector (
99 UINT32 PhysicalAddress)
100{
101 ACPI_FUNCTION_TRACE (AcpiSetFirmwareWakingVector);
102
103
104 /* Set the 32-bit vector */
105
106 AcpiGbl_FACS->FirmwareWakingVector = PhysicalAddress;
107
108 /* Clear the 64-bit vector if it exists */
109
110 if ((AcpiGbl_FACS->Length > 32) && (AcpiGbl_FACS->Version >= 1))
111 {

--- 367 unchanged lines hidden ---