This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 9bfde6b934 drivers/syslog: add ramlog write multiple bytes for 
interrupt handler
9bfde6b934 is described below

commit 9bfde6b9346741467a58f321aeb7340af270fcca
Author: yangsong8 <[email protected]>
AuthorDate: Sat Oct 12 18:14:29 2024 +0800

    drivers/syslog: add ramlog write multiple bytes for interrupt handler
    
    make sc_write_force pointing to ramlog_write in struct syslog_channel_ops_s.
    
    Signed-off-by: yangsong8 <[email protected]>
---
 drivers/syslog/syslog_channel.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/syslog/syslog_channel.c b/drivers/syslog/syslog_channel.c
index d3082a8ca9..f58f8ac7c1 100644
--- a/drivers/syslog/syslog_channel.c
+++ b/drivers/syslog/syslog_channel.c
@@ -74,6 +74,7 @@ static const struct syslog_channel_ops_s g_ramlog_channel_ops 
=
   ramlog_putc,
   ramlog_putc,
   NULL,
+  ramlog_write,
   ramlog_write
 };
 

Reply via email to