Changeset 484 for trunk/kernel/fs
- Timestamp:
- Aug 21, 2018, 9:52:37 PM (6 years ago)
- Location:
- trunk/kernel/fs
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/devfs.c
r457 r484 53 53 54 54 /////////////////////////////// 55 devfs_ctx_t * devfs_ctx_alloc( )55 devfs_ctx_t * devfs_ctx_alloc( void ) 56 56 { 57 57 kmem_req_t req; -
trunk/kernel/fs/devfs.h
r407 r484 64 64 * @ return a pointer on the created context / return NULL if failure. 65 65 ****************************************************************************************/ 66 devfs_ctx_t * devfs_ctx_alloc( );66 devfs_ctx_t * devfs_ctx_alloc( void ); 67 67 68 68 /***************************************************************************************** -
trunk/kernel/fs/fatfs.c
r473 r484 224 224 225 225 ////////////////////////////////////////////////////////////////////////////////////////// 226 void fatfs_ctx_display( )226 void fatfs_ctx_display( void ) 227 227 { 228 228 vfs_ctx_t * vfs_ctx = &fs_context[FS_TYPE_FATFS]; … … 328 328 329 329 /////////////////////////////// 330 fatfs_ctx_t * fatfs_ctx_alloc( )330 fatfs_ctx_t * fatfs_ctx_alloc( void ) 331 331 { 332 332 kmem_req_t req; -
trunk/kernel/fs/fatfs.h
r457 r484 215 215 * This function display the content of the FATFS context. 216 216 *****************************************************************************************/ 217 void fatfs_ctx_display( );217 void fatfs_ctx_display( void ); 218 218 219 219 … … 228 228 * @ return a pointer on the created context / return NULL if failure. 229 229 *****************************************************************************************/ 230 fatfs_ctx_t * fatfs_ctx_alloc( );230 fatfs_ctx_t * fatfs_ctx_alloc( void ); 231 231 232 232 /***************************************************************************************** -
trunk/kernel/fs/vfs.c
r473 r484 1117 1117 1118 1118 ///////////////////////////////// 1119 cxy_t vfs_cluster_random_select( )1119 cxy_t vfs_cluster_random_select( void ) 1120 1120 { 1121 1121 uint32_t x_size = LOCAL_CLUSTER->x_size; -
trunk/kernel/fs/vfs.h
r459 r484 521 521 * @ returns the selected cluster identifier. 522 522 *****************************************************************************************/ 523 cxy_t vfs_cluster_random_select( );523 cxy_t vfs_cluster_random_select( void ); 524 524 525 525 /******************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.