windows-nt/Source/XPSP1/NT/base/busdrv/acpi/driver/shared/acpiterm.c

55 lines
685 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
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"
) );
}