Commit 92ed7161 authored by Armando Visconti's avatar Armando Visconti Committed by Carles Cufi
Browse files

drivers: dma: stm32f4: Fix typo introduced with new logger



Compilation of this driver was broken by commit 07ff2d58
as reported in issue #10453. This commit is fixing it.

Signed-off-by: default avatarArmando Visconti <armando.visconti@st.com>
parent 3d4c525c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -381,7 +381,7 @@ static int dma_stm32_config(struct device *dev, u32_t id,
	}

	if ((MEMORY_TO_MEMORY == stream->direction) && (!ddata->mem2mem)) {
		SYS_LOG_ERR("DMA error: Memcopy not supported for device %s",
		LOG_ERR("DMA error: Memcopy not supported for device %s",
				dev->config->name);
		return -EINVAL;
	}