Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
739 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. acpiterm.c
  5. Abstract:
  6. This module contains functions to put an ACPI machine out of ACPI mode
  7. Author:
  8. Jason Clark (jasoncl)
  9. Environment:
  10. NT Kernel Model Driver only
  11. --*/
  12. #include "pch.h"
  13. VOID
  14. ACPICleanUp(
  15. VOID
  16. )
  17. /*++
  18. Routine Description:
  19. Resets the machine state out of ACPI mode and frees data structures
  20. allocated by this part of the driver
  21. Arguments:
  22. None
  23. Return Value:
  24. None
  25. --*/
  26. {
  27. //
  28. // Free the ACPIInformation structure.
  29. //
  30. ACPIPrint( (
  31. ACPI_PRINT_WARNING,
  32. "ACPICleanUp: Cleaning Up --- ACPI Terminated\n"
  33. ) );
  34. }