Changeset e77c3ed in mainline for uspace/srv/bd/hr/superblock.c


Ignore:
Timestamp:
2025-04-18T18:25:55Z (3 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
6f41c21f
Parents:
29e7cc7
git-author:
Miroslav Cimerman <mc@…> (2025-04-18 18:25:31)
git-committer:
Miroslav Cimerman <mc@…> (2025-04-18 18:25:55)
Message:

hr: superblock.c,h: const quals for args

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/hr/superblock.c

    r29e7cc7 re77c3ed  
    135135}
    136136
    137 bool hr_valid_md_magic(hr_metadata_t *md)
     137bool hr_valid_md_magic(const hr_metadata_t *md)
    138138{
    139139        HR_DEBUG("%s()", __func__);
     
    219219}
    220220
    221 void hr_encode_metadata_to_block(hr_metadata_t *metadata, void *block)
     221void hr_encode_metadata_to_block(const hr_metadata_t *metadata, void *block)
    222222{
    223223        HR_DEBUG("%s()", __func__);
     
    282282}
    283283
    284 void hr_metadata_dump(hr_metadata_t *metadata)
     284void hr_metadata_dump(const hr_metadata_t *metadata)
    285285{
    286286        HR_DEBUG("%s()", __func__);
Note: See TracChangeset for help on using the changeset viewer.