arch/arm/src/samd5e5/sam_start.c: Fix a typo/error when debug features are enabled.

This commit is contained in:
Gregory Nutt 2018-07-29 17:14:51 -06:00
parent a0fb3e11ac
commit 54db2cadd2

View File

@ -120,7 +120,7 @@ void __start(void) __attribute__ ((no_instrument_function));
****************************************************************************/
#ifdef CONFIG_DEBUG_FEATURES
# define showprogress(c) up_lowputc(c)
# define showprogress(c) sam_lowputc(c)
#else
# define showprogress(c)
#endif