diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index 7ef4e522ab3..62f5d1d11ce 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -3331,18 +3331,18 @@ extern void up_ledoff(int led);
SLEEP (some MCUs may even require going through reset).
- These various states are represented with type enum pm_state_e in include/nuttx/pm.h.
+ These various states are represented with type enum pm_state_e in include/nuttx/power/pm.h.
- All PM interfaces are declared in the file include/nuttx/pm.h.
+ All PM interfaces are declared in the file include/nuttx/power/pm.h.
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> void pm_initialize(void);
Description: @@ -3359,7 +3359,7 @@ None
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> int pm_register(FAR struct pm_callback_s *callbacks);
Description:
@@ -3379,7 +3379,7 @@ Zero (OK) on success; otherwise a negater errno value
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> void pm_activity(int priority);
Description: @@ -3406,7 +3406,7 @@ void pm_activity(int priority);
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> enum pm_state_e pm_checkstate(void);
Description: @@ -3433,7 +3433,7 @@ enum pm_state_e pm_checkstate(void);
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> int pm_changestate(enum pm_state_e newstate);
Description: @@ -3461,7 +3461,7 @@ enum pm_state_e pm_checkstate(void);
The struct pm_callback_s includes the pointers to the driver callback functions.
- This structure is defined include/nuttx/pm.h.
+ This structure is defined include/nuttx/power/pm.h.
These callback functions can be used to provide power management information to the driver.
Function Prototype:
-#include <nuttx/pm.h> +#include <nuttx/power/pm.h> void (*notify)(FAR struct pm_callback_s *cb, enum pm_state_e pmstate);
Description: