windows-nt/Source/XPSP1/NT/base/busdrv/acpi/driver/shared/acpiterm.c
2020-09-26 16:20:57 +08:00

55 lines
685 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
acpiterm.c
Abstract:
This module contains functions to put an ACPI machine out of ACPI mode
Author:
Jason Clark (jasoncl)
Environment:
NT Kernel Model Driver only
--*/
#include "pch.h"
VOID
ACPICleanUp(
VOID
)
/*++
Routine Description:
Resets the machine state out of ACPI mode and frees data structures
allocated by this part of the driver
Arguments:
None
Return Value:
None
--*/
{
//
// Free the ACPIInformation structure.
//
ACPIPrint( (
ACPI_PRINT_WARNING,
"ACPICleanUp: Cleaning Up --- ACPI Terminated\n"
) );
}