archpm.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*++
  2. Copyright (c) 2015 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. archpm.c
  5. Abstract:
  6. This module implements architecture-specific Power Management Library
  7. routines.
  8. Author:
  9. Evan Green 25-Sep-2015
  10. Environment:
  11. Kernel
  12. --*/
  13. //
  14. // ------------------------------------------------------------------- Includes
  15. //
  16. #include <minoca/kernel/kernel.h>
  17. #include "../pmp.h"
  18. //
  19. // ---------------------------------------------------------------- Definitions
  20. //
  21. //
  22. // ------------------------------------------------------ Data Type Definitions
  23. //
  24. //
  25. // ----------------------------------------------- Internal Function Prototypes
  26. //
  27. //
  28. // -------------------------------------------------------------------- Globals
  29. //
  30. //
  31. // ------------------------------------------------------------------ Functions
  32. //
  33. KSTATUS
  34. PmpArchInitialize (
  35. VOID
  36. )
  37. /*++
  38. Routine Description:
  39. This routine performs architecture-specific initialization for the power
  40. management library.
  41. Arguments:
  42. None.
  43. Return Value:
  44. Status code.
  45. --*/
  46. {
  47. return STATUS_SUCCESS;
  48. }
  49. //
  50. // --------------------------------------------------------- Internal Functions
  51. //