Clean up some naming

This commit is contained in:
Gregory Nutt 2015-12-01 15:04:12 -06:00
parent 548ba1640f
commit 1f82dda9d8
2 changed files with 4 additions and 4 deletions

View File

@ -132,7 +132,7 @@ EXTERN struct mm_heap_s g_ccm_heap;
#endif
/****************************************************************************
* Name: ccm_register
* Name: ccm_procfs_register
*
* Description:
* Register the CCM procfs file system entry
@ -140,7 +140,7 @@ EXTERN struct mm_heap_s g_ccm_heap;
****************************************************************************/
#ifdef CONFIG_STM32_CCM_PROCFS
int ccm_register(void);
int ccm_procfs_register(void);
#endif
#endif /* __ASSEMBLY__ */

View File

@ -324,14 +324,14 @@ static int ccm_stat(const char *relpath, struct stat *buf)
****************************************************************************/
/****************************************************************************
* Name: ccm_register
* Name: ccm_procfs_register
*
* Description:
* Register the CCM procfs file system entry
*
****************************************************************************/
int ccm_register(void)
int ccm_procfs_register(void)
{
return procfs_register(&g_procfs_ccm);
}