summaryrefslogtreecommitdiff
path: root/nuttx/drivers/syslog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-10 09:29:30 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-10 09:29:30 -0600
commit016245d1385b767152b23a480ac445e6ed27b1c0 (patch)
tree73a531bcba814245cf04f0b5801597fe91ae68cc /nuttx/drivers/syslog
parentd52b29aa0159a9600d16c8265271fb9ac1a62e31 (diff)
downloadnuttx-016245d1385b767152b23a480ac445e6ed27b1c0.tar.gz
nuttx-016245d1385b767152b23a480ac445e6ed27b1c0.tar.bz2
nuttx-016245d1385b767152b23a480ac445e6ed27b1c0.zip
mv ramlog.h and syslog.h to new include/nuttx/syslog
Diffstat (limited to 'nuttx/drivers/syslog')
-rw-r--r--nuttx/drivers/syslog/ramlog.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/nuttx/drivers/syslog/ramlog.c b/nuttx/drivers/syslog/ramlog.c
index 47b0cd3cb..0c612ec96 100644
--- a/nuttx/drivers/syslog/ramlog.c
+++ b/nuttx/drivers/syslog/ramlog.c
@@ -56,7 +56,7 @@
#include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h>
#include <nuttx/arch.h>
-#include <nuttx/ramlog.h>
+#include <nuttx/syslog/ramlog.h>
#include <arch/irq.h>
@@ -638,7 +638,6 @@ errout:
*
* Description:
* Create the RAM logging device and register it at the specified path.
- * Mostly likely this path will be /dev/console
*
****************************************************************************/
@@ -683,8 +682,7 @@ int ramlog_register(FAR const char *devpath, FAR char *buffer, size_t buflen)
* Name: ramlog_consoleinit
*
* Description:
- * Create the RAM logging device and register it at the specified path.
- * Mostly likely this path will be /dev/console
+ * Use a pre-allocated RAM logging device and register it at /dev/console
*
****************************************************************************/
@@ -703,8 +701,8 @@ int ramlog_consoleinit(void)
* Name: ramlog_sysloginit
*
* Description:
- * Create the RAM logging device and register it at the specified path.
- * Mostly likely this path will be CONFIG_RAMLOG_SYSLOG
+ * Use a pre-allocated RAM logging device and register it at the path
+ * specified by CONFIG_RAMLOG_SYSLOG
*
* If CONFIG_RAMLOG_CONSOLE is also defined, then this functionality is
* performed when ramlog_consoleinit() is called.