1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/mtd_spi_nor: fix debug msg

This patch adds some missing newline chars to debug output ensuring the
lines get flushed and don't run together.
This commit is contained in:
Joshua DeWeese 2023-05-22 12:13:54 -04:00
parent eb10a5ccd8
commit 33cb2f489b

View File

@ -501,9 +501,9 @@ static int mtd_spi_nor_init(mtd_dev_t *mtd)
_init_pins(dev);
/* power up the MTD device*/
DEBUG("mtd_spi_nor_init: power up MTD device");
DEBUG_PUTS("mtd_spi_nor_init: power up MTD device");
if (mtd_spi_nor_power(mtd, MTD_POWER_UP)) {
DEBUG("mtd_spi_nor_init: failed to power up MTD device");
DEBUG_PUTS("mtd_spi_nor_init: failed to power up MTD device");
return -EIO;
}