Changeset c84146d3 in mainline for uspace/srv/fs/exfat/exfat_ops.c
- Timestamp:
- 2013-07-15T21:47:50Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2f706e
- Parents:
- b86a32e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
rb86a32e rc84146d3 90 90 static service_id_t exfat_service_get(fs_node_t *node); 91 91 static uint32_t exfat_size_block(service_id_t); 92 static uint64_t exfat_total_block (service_id_t);93 static uint64_t exfat_free_block (service_id_t);92 static uint64_t exfat_total_block_count(service_id_t); 93 static uint64_t exfat_free_block_count(service_id_t); 94 94 95 95 /* … … 923 923 } 924 924 925 uint64_t exfat_total_block (service_id_t service_id)925 uint64_t exfat_total_block_count(service_id_t service_id) 926 926 { 927 927 exfat_bs_t *bs; … … 933 933 } 934 934 935 uint64_t exfat_free_block (service_id_t service_id)935 uint64_t exfat_free_block_count(service_id_t service_id) 936 936 { 937 937 exfat_bs_t *bs; … … 963 963 .service_get = exfat_service_get, 964 964 .size_block = exfat_size_block, 965 .total_block = exfat_total_block,966 .free_block = exfat_free_block965 .total_block_count = exfat_total_block_count, 966 .free_block_count = exfat_free_block_count 967 967 }; 968 968
Note:
See TracChangeset
for help on using the changeset viewer.