diff --git a/drivers/syslog/syslog_channel.c b/drivers/syslog/syslog_channel.c index 60cf1853687e8..360d97d2d40a9 100644 --- a/drivers/syslog/syslog_channel.c +++ b/drivers/syslog/syslog_channel.c @@ -217,11 +217,7 @@ static ssize_t syslog_default_write(FAR struct syslog_channel_s *channel, FAR const char *buffer, size_t buflen) { #if defined(CONFIG_ARCH_LOWPUTC) - static sem_t sem = SEM_INITIALIZER(1); - - nxsem_wait(&sem); up_puts(buffer); - nxsem_post(&sem); #endif UNUSED(channel);