From 7d9970d4f42d8bfb52b4f02342a5fd0b95f8f588 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 22 Sep 2014 14:53:56 -0600 Subject: [PATCH] Add the build framework and skeleton files for the shared memory feature (no logic yet provided) --- configs/mikroe-stm32f4/src/up_nsh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/mikroe-stm32f4/src/up_nsh.c b/configs/mikroe-stm32f4/src/up_nsh.c index 8346f49082..31e9be21dc 100644 --- a/configs/mikroe-stm32f4/src/up_nsh.c +++ b/configs/mikroe-stm32f4/src/up_nsh.c @@ -280,9 +280,9 @@ int nsh_archinitialize(void) } #else /* CONFIG_MIKROE_FLASH_PART */ - /* Configure the device with no partition support */ + /* Configure the device with no partition support */ - smart_initialize(CONFIG_MIKROE_FLASH_MINOR, mtd, NULL); + smart_initialize(CONFIG_MIKROE_FLASH_MINOR, mtd, NULL); #endif /* CONFIG_MIKROE_FLASH_PART */ }