Fix some conditional compilation that got hosed in last changes for review of PR

This commit is contained in:
Gregory Nutt 2016-06-28 09:59:45 -06:00
parent 408c9d5c1c
commit 14a8bbbf22

View File

@ -293,6 +293,7 @@ static void copy_reverse(stack_word_t *dest, stack_word_t *src, int size)
*dest++ = *src--; *dest++ = *src--;
} }
} }
#endif /* CONFIG_STM32F7_SAVE_CRASHDUMP */
/************************************************************************************ /************************************************************************************
* Public Functions * Public Functions
@ -327,7 +328,7 @@ int stm32_bbsram_int(void)
syslog(LOG_INFO, "stm32 bbsram: Failed to unlink Fault Log file [%s] (%d)\n", HARDFAULT_PATH, rv); syslog(LOG_INFO, "stm32 bbsram: Failed to unlink Fault Log file [%s] (%d)\n", HARDFAULT_PATH, rv);
} }
} }
#endif /* CONFIG_STM32_SAVE_CRASHDUMP */ #endif /* CONFIG_STM32F7_SAVE_CRASHDUMP */
return rv; return rv;
} }
@ -336,6 +337,7 @@ int stm32_bbsram_int(void)
* Name: board_crashdump * Name: board_crashdump
************************************************************************************/ ************************************************************************************/
#if defined(CONFIG_STM32F7_SAVE_CRASHDUMP)
void board_crashdump(uintptr_t currentsp, FAR void *tcb, void board_crashdump(uintptr_t currentsp, FAR void *tcb,
FAR const uint8_t *filename, int lineno) FAR const uint8_t *filename, int lineno)
{ {
@ -486,6 +488,6 @@ void board_crashdump(uintptr_t currentsp, FAR void *tcb,
up_systemreset(); up_systemreset();
#endif #endif
} }
#endif /* CONFIG_STM32_SAVE_CRASHDUMP */ #endif /* CONFIG_STM32F7_SAVE_CRASHDUMP */
#endif /* CONFIG_STM32_BBSRAM */ #endif /* CONFIG_STM32_BBSRAM */