File tree Expand file tree Collapse file tree 13 files changed +15
-15
lines changed
ti_simplelink/cc13x2_cc26x2
kernel/profiling/profiling_api/src
subsys/power/power_mgmt/src Expand file tree Collapse file tree 13 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ enum power_states pm_system_suspend(int32_t ticks);
296296 * interrupts after resuming from sleep state. In future, the enabling
297297 * of interrupts may be moved into the kernel.
298298 */
299- void _pm_power_state_exit_post_ops (enum power_states state );
299+ void pm_power_state_exit_post_ops (enum power_states state );
300300
301301/**
302302 * @brief Application defined function for power state entry
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ static void z_power_soc_deep_sleep(void)
7171 soc_deep_sleep_periph_restore ();
7272
7373 /*
74- * _pm_power_state_exit_post_ops () is not being called
74+ * pm_power_state_exit_post_ops () is not being called
7575 * after exiting deep sleep, so need to unmask exceptions
7676 * and interrupts here.
7777 */
@@ -125,7 +125,7 @@ void pm_power_state_set(enum power_states state)
125125 }
126126}
127127
128- void _pm_power_state_exit_post_ops (enum power_states state )
128+ void pm_power_state_exit_post_ops (enum power_states state )
129129{
130130 switch (state ) {
131131#if (defined(CONFIG_PM_SLEEP_STATES ))
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ void pm_power_state_set(enum power_states state)
2828}
2929
3030/* Handle SOC specific activity after Low Power Mode Exit */
31- void _pm_power_state_exit_post_ops (enum power_states state )
31+ void pm_power_state_exit_post_ops (enum power_states state )
3232{
3333 switch (state ) {
3434#ifdef CONFIG_PM_DEEP_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ void pm_power_state_set(enum power_states state)
2828}
2929
3030/* Handle SOC specific activity after Low Power Mode Exit */
31- void _pm_power_state_exit_post_ops (enum power_states state )
31+ void pm_power_state_exit_post_ops (enum power_states state )
3232{
3333 switch (state ) {
3434#ifdef CONFIG_PM_DEEP_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ void pm_power_state_set(enum power_states state)
3232}
3333
3434/* Handle SOC specific activity after Low Power Mode Exit */
35- void _pm_power_state_exit_post_ops (enum power_states state )
35+ void pm_power_state_exit_post_ops (enum power_states state )
3636{
3737 switch (state ) {
3838#ifdef CONFIG_PM_DEEP_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ void pm_power_state_set(enum power_states state)
2929}
3030
3131/* Handle SOC specific activity after Low Power Mode Exit */
32- void _pm_power_state_exit_post_ops (enum power_states state )
32+ void pm_power_state_exit_post_ops (enum power_states state )
3333{
3434 switch (state ) {
3535#ifdef CONFIG_PM_DEEP_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ void pm_power_state_set(enum power_states state)
6464}
6565
6666/* Handle SOC specific activity after Low Power Mode Exit */
67- void _pm_power_state_exit_post_ops (enum power_states state )
67+ void pm_power_state_exit_post_ops (enum power_states state )
6868{
6969 ARG_UNUSED (state );
7070}
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void pm_power_state_set(enum power_states state)
7979}
8080
8181/* Handle SOC specific activity after Low Power Mode Exit */
82- void _pm_power_state_exit_post_ops (enum power_states state )
82+ void pm_power_state_exit_post_ops (enum power_states state )
8383{
8484 switch (state ) {
8585#ifdef CONFIG_PM_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void pm_power_state_set(enum power_states state)
7979}
8080
8181/* Handle SOC specific activity after Low Power Mode Exit */
82- void _pm_power_state_exit_post_ops (enum power_states state )
82+ void pm_power_state_exit_post_ops (enum power_states state )
8383{
8484 switch (state ) {
8585#ifdef CONFIG_PM_SLEEP_STATES
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ void pm_power_state_set(enum power_states state)
127127}
128128
129129/* Handle SOC specific activity after Low Power Mode Exit */
130- void _pm_power_state_exit_post_ops (enum power_states state )
130+ void pm_power_state_exit_post_ops (enum power_states state )
131131{
132132 /*
133133 * System is now in active mode. Reenable interrupts which were disabled
You can’t perform that action at this time.
0 commit comments