Changes in uspace/srv/fs/fat/fat_ops.c [44ecf89:d0a1e9b6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
r44ecf89 rd0a1e9b6 91 91 static bool fat_is_file(fs_node_t *node); 92 92 static service_id_t fat_service_get(fs_node_t *node); 93 static uint32_t fat_size_block(service_id_t); 93 94 94 95 /* … … 843 844 } 844 845 846 uint32_t fat_size_block(service_id_t service_id) 847 { 848 fat_bs_t *bs; 849 bs = block_bb_get(service_id); 850 851 return BPC(bs); 852 } 853 845 854 /** libfs operations */ 846 855 libfs_ops_t fat_libfs_ops = { … … 860 869 .is_directory = fat_is_directory, 861 870 .is_file = fat_is_file, 862 .service_get = fat_service_get 871 .service_get = fat_service_get, 872 .size_block = fat_size_block 863 873 }; 864 874
Note:
See TracChangeset
for help on using the changeset viewer.