Changes in uspace/srv/fs/fat/fat_ops.c [d0a1e9b6:44ecf89] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rd0a1e9b6 r44ecf89 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);94 93 95 94 /* … … 844 843 } 845 844 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 854 845 /** libfs operations */ 855 846 libfs_ops_t fat_libfs_ops = { … … 869 860 .is_directory = fat_is_directory, 870 861 .is_file = fat_is_file, 871 .service_get = fat_service_get, 872 .size_block = fat_size_block 862 .service_get = fat_service_get 873 863 }; 874 864
Note:
See TracChangeset
for help on using the changeset viewer.