Fix some procfs registration typos

This commit is contained in:
Gregory Nutt 2015-12-01 16:31:40 -06:00
parent eaa113a284
commit 7483ed38ce
3 changed files with 3 additions and 3 deletions

2
arch

@ -1 +1 @@
Subproject commit 72f0597a154dad90e05130c47f870e68376db0b8
Subproject commit 63bee79ab5f692cde88209ec72e00ae14de7204d

View File

@ -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;

View File

@ -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