Changeset aa53ee69 in mainline


Ignore:
Timestamp:
2010-01-13T21:41:50Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
563d6077
Parents:
990c70e (diff), 2ffaab5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge: remove accidentally commited debugging code.

File:
1 edited

Legend:

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

    r990c70e raa53ee69  
    305305        int rc;
    306306
    307         printf("fatcnt\n");
    308307        /* Check number of FATs. */
    309308        if (bs->fatcnt == 0)
     
    312311        /* Check total number of sectors. */
    313312
    314         printf("totsec\n");
    315313        if (bs->totsec16 == 0 && bs->totsec32 == 0)
    316314                return ENOTSUP;
     
    320318                return ENOTSUP;
    321319
    322         printf("mdesc\n");
    323320        /* Check media descriptor. Must be between 0xf0 and 0xff. */
    324321        if ((bs->mdesc & 0xf0) != 0xf0)
    325322                return ENOTSUP;
    326323
    327         printf("sec_per_fat\n");
    328324        /* Check number of sectors per FAT. */
    329325        if (bs->sec_per_fat == 0)
     
    333329
    334330        for (fat_no = 0; fat_no < bs->fatcnt; fat_no++) {
    335                 printf("clst-read\n");
    336331                rc = fat_get_cluster(bs, dev_handle, fat_no, 0, &e0);
    337332                if (rc != EOK)
     
    342337                        return EIO;
    343338
    344                 printf("mdesc-fat\n");
    345339                /* Check that first byte of FAT contains the media descriptor. */
    346340                if ((e0 & 0xff) != bs->mdesc)
    347341                        return ENOTSUP;
    348342
    349                 printf("fat-signat\n");
    350343                /*
    351344                 * Check that remaining bits of the first two entries are
     
    10471040        }
    10481041
    1049         /* Do some simple sanity checks on the boot blocks. */
     1042        /* Do some simple sanity checks on the file system. */
    10501043        rc = fat_sanity_check(bs, dev_handle);
    10511044        if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.