STM32 power management update

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4848 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-06-18 14:45:34 +00:00
parent b5a56aaea8
commit 5396b0f6bc
6 changed files with 352 additions and 37 deletions
+3 -1
View File
@@ -307,10 +307,12 @@ struct pm_callback_s
* Returned Value:
* None. The driver already agreed to transition to the low power
* consumption state when when it returned OK to the prepare() call.
* At that time it should have made all preprations necessary to enter
* the new state. Now the driver must make the state transition.
*
**************************************************************************/
int (*notify)(FAR struct pm_callback_s *cb, enum pm_state_e pmstate);
void (*notify)(FAR struct pm_callback_s *cb, enum pm_state_e pmstate);
};
/****************************************************************************