Changeset 7ece4247 in mainline for uspace/srv/fs/fat/fat_fat.c


Ignore:
Timestamp:
2011-08-26T23:36:00Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0be611b
Parents:
4bf6895
Message:

Cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_fat.c

    r4bf6895 r7ece4247  
    289289 * @return              EOK or a negative error code.
    290290 */
    291 int
     291static int
    292292fat_get_cluster_fat12(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    293293    fat_cluster_t clst, fat_cluster_t *value)
     
    359359 * @return              EOK or a negative error code.
    360360 */
    361 int
     361static int
    362362fat_get_cluster_fat16(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    363363    fat_cluster_t clst, fat_cluster_t *value)
     
    390390 * @return              EOK or a negative error code.
    391391 */
    392 int
     392static int
    393393fat_get_cluster_fat32(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    394394    fat_cluster_t clst, fat_cluster_t *value)
     
    451451 * @return              EOK on success or a negative error code.
    452452 */
    453 int
     453static int
    454454fat_set_cluster_fat12(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    455455    fat_cluster_t clst, fat_cluster_t value)
     
    494494                        return ERANGE;
    495495                }
    496         }
    497         else
     496        } else
    498497                byte2 = ((uint8_t*) b->data)[(offset % BPS(bs)) + 1];
    499498
     
    540539 * @return              EOK on success or a negative error code.
    541540 */
    542 int
     541static int
    543542fat_set_cluster_fat16(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    544543    fat_cluster_t clst, fat_cluster_t value)
     
    573572 * @return              EOK on success or a negative error code.
    574573 */
    575 int
     574static int
    576575fat_set_cluster_fat32(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
    577576    fat_cluster_t clst, fat_cluster_t value)
Note: See TracChangeset for help on using the changeset viewer.