nuttx: remove space befone newline in logs

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko
2021-12-27 00:18:22 +02:00
committed by Xiang Xiao
parent e68ffb9f99
commit 3ccb657dc2
96 changed files with 274 additions and 272 deletions
@@ -113,7 +113,7 @@ int stm32_spisd_initialize(int port, int minor)
stm32_configgpio(GPIO_SPI1_CS); /* Assign CS */
stm32_gpiowrite(GPIO_SPI1_CS, 1); /* Ensure the CS is inactive */
mcinfo("INFO: Initializing mmcsd port %d minor %d \n",
mcinfo("INFO: Initializing mmcsd port %d minor %d\n",
port, minor);
spi = stm32_spibus_initialize(port);
@@ -518,7 +518,7 @@ int stm32_bringup(void)
ret = stm32_gs2200m_initialize("/dev/gs2200m", 3);
if (ret < 0)
{
serr("ERROR: Failed to initialize GS2200M: %d \n", ret);
serr("ERROR: Failed to initialize GS2200M: %d\n", ret);
}
#endif
@@ -107,7 +107,7 @@ static void gs2200m_irq_enable(void)
irqstate_t flags = spin_lock_irqsave(NULL);
uint32_t dready = 0;
wlinfo("== ec:%" PRId32 " called=%" PRId32 " \n",
wlinfo("== ec:%" PRId32 " called=%" PRId32 "\n",
_enable_count, _n_called++);
if (0 == _enable_count)
@@ -130,7 +130,7 @@ static void gs2200m_irq_enable(void)
{
/* Call g_irq_handler directly */
wlinfo("== ** call irq handler ** \n");
wlinfo("== ** call irq handler **\n");
g_irq_handler(0, NULL, g_irq_arg);
}
}
@@ -143,7 +143,7 @@ static void gs2200m_irq_disable(void)
{
irqstate_t flags = spin_lock_irqsave(NULL);
wlinfo("== ec:%" PRId32 " called=%" PRId32 " \n",
wlinfo("== ec:%" PRId32 " called=%" PRId32 "\n",
_enable_count, _n_called++);
_enable_count--;
@@ -82,7 +82,7 @@ int stm32_mmcsd_initialize(int port, int minor)
stm32_configgpio(GPIO_MMCSD_NSS); /* Assign CS */
stm32_gpiowrite(GPIO_MMCSD_NSS, 1); /* Ensure the CS is inactive */
mcinfo("INFO: Initializing mmcsd port %d minor %d \n",
mcinfo("INFO: Initializing mmcsd port %d minor %d\n",
port, minor);
spi = stm32_spibus_initialize(port);