Changeset b883aa8 in mainline for uspace/srv/bd/hr/superblock.c
- Timestamp:
- 2025-04-21T12:47:58Z (4 weeks ago)
- Children:
- 5cb1631
- Parents:
- 75262d2f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/superblock.c
r75262d2f rb883aa8 61 61 }; 62 62 63 hr_superblock_ops_t *get_type_ops( metadata_type_t type)63 hr_superblock_ops_t *get_type_ops(hr_metadata_type_t type) 64 64 { 65 65 assert(type >= HR_METADATA_NATIVE && type < HR_METADATA_LAST_DUMMY); … … 69 69 70 70 errno_t find_metadata(service_id_t svc_id, void **rmetadata, 71 metadata_type_t *rtype)71 hr_metadata_type_t *rtype) 72 72 { 73 73 HR_DEBUG("%s()", __func__); … … 83 83 return EINVAL; 84 84 85 volatile metadata_type_t type = HR_METADATA_NATIVE;85 volatile hr_metadata_type_t type = HR_METADATA_NATIVE; 86 86 for (; type < HR_METADATA_LAST_DUMMY; type++) { 87 87 meta_ops = hr_superblock_ops_all[type];
Note:
See TracChangeset
for help on using the changeset viewer.