diff --git a/sys/fs/fat/fat.c b/sys/fs/fat/fat.c index c0edb43..3602cad 100644 --- a/sys/fs/fat/fat.c +++ b/sys/fs/fat/fat.c @@ -109,7 +109,7 @@ size = fl_fread(data, size, 1, _file); - kprintf("[Read:%i]", size); + //kprintf("[Read:%i]", size); /* Return */ return (size); @@ -140,8 +140,8 @@ assert(fd->mp->device->devInfo->read); assert(file); - kprintf("File: %s, ", file); - kprintf("Mode: 0x%X\n", fd->mode); + //kprintf("File: %s, ", file); + //kprintf("Mode: 0x%X\n", fd->mode); _file = fl_fopen(file, "r"); @@ -154,7 +154,7 @@ fd->res = _file; fd->perms = 0x1; fd->size = _file->filelength; - kprintf("Size: %i\n", fd->size); + //kprintf("Size: %i\n", fd->size); } return (0x1); @@ -173,7 +173,8 @@ fl_init(); /* Set up our file system structure */ - struct fileSystem ubixFileSystem = { NULL, /* prev */ + struct fileSystem ubixFileSystem = { + NULL, /* prev */ NULL, /* next */ (void*) fat_initialize, /* vfsInitFS */ (void*) read_fat, /* vfsRead */