From 7483ed38ce3af50d78761ee193ac6c0bb86a5b9b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 1 Dec 2015 16:31:40 -0600 Subject: [PATCH] Fix some procfs registration typos --- arch | 2 +- fs/procfs/fs_procfs.c | 2 +- include/nuttx/fs/procfs.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch b/arch index 72f0597a15..63bee79ab5 160000 --- a/arch +++ b/arch @@ -1 +1 @@ -Subproject commit 72f0597a154dad90e05130c47f870e68376db0b8 +Subproject commit 63bee79ab5f692cde88209ec72e00ae14de7204d diff --git a/fs/procfs/fs_procfs.c b/fs/procfs/fs_procfs.c index d96fabca9a..ddcd7c8c0c 100644 --- a/fs/procfs/fs_procfs.c +++ b/fs/procfs/fs_procfs.c @@ -1047,7 +1047,7 @@ int procfs_initialize(void) ****************************************************************************/ #ifdef CONFIG_FS_PROCFS_REGISTER -int procfs_register(FAR const struct procfs_file_s *entry) +int procfs_register(FAR const struct procfs_entry_s *entry) { FAR struct procfs_entry_s *newtable; unsigned int newcount; diff --git a/include/nuttx/fs/procfs.h b/include/nuttx/fs/procfs.h index 3188f6159a..c48be86d2f 100644 --- a/include/nuttx/fs/procfs.h +++ b/include/nuttx/fs/procfs.h @@ -195,7 +195,7 @@ size_t procfs_memcpy(FAR const char *src, size_t srclen, ****************************************************************************/ #ifdef CONFIG_FS_PROCFS_REGISTER -int procfs_register(FAR const struct procfs_file_s *entry); +int procfs_register(FAR const struct procfs_entry_s *entry); #endif #undef EXTERN