From 0b3fa7bfbbe8e0d98ce2fe319330b2615225175d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Roberto=20de=20Souza?= Date: Thu, 19 Jan 2017 17:13:40 -0800 Subject: [PATCH] aerofc: Remove call to board_dma_alloc_init() This commit will only remove the error message from serial console as this board don't define BOARD_DMA_ALLOC_POOL_SIZE. --- src/drivers/boards/aerofc-v1/aerofc_init.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/drivers/boards/aerofc-v1/aerofc_init.c b/src/drivers/boards/aerofc-v1/aerofc_init.c index 20c2bdfe8f..19a5a10207 100644 --- a/src/drivers/boards/aerofc-v1/aerofc_init.c +++ b/src/drivers/boards/aerofc-v1/aerofc_init.c @@ -173,12 +173,6 @@ __EXPORT int board_app_initialize(uintptr_t arg) /* configure the high-resolution time/callout interface */ hrt_init(); - /* configure the DMA allocator */ - - if (board_dma_alloc_init() < 0) { - message("DMA alloc FAILED"); - } - /* configure CPU load estimation */ #ifdef CONFIG_SCHED_INSTRUMENTATION cpuload_initialize_once();