summaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
authorPeter Pearse <peter.pearse@arm.com>2007-05-18 16:47:03 +0100
committerPeter Pearse <peter.pearse@arm.com>2007-05-18 16:47:03 +0100
commit3e3b956906eba9e4ad7931581ecedaad10eccce8 (patch)
tree2f8d461030a62106c2314451ee149e9ab55e9a11 /fs/fat
parentfdda367561f0f6fb21d5b575402c0f9d2fd08e76 (diff)
downloadblackbird-obmc-uboot-3e3b956906eba9e4ad7931581ecedaad10eccce8.tar.gz
blackbird-obmc-uboot-3e3b956906eba9e4ad7931581ecedaad10eccce8.zip
Reduce line lengths to 80 characters max.
Diffstat (limited to 'fs/fat')
-rwxr-xr-x[-rw-r--r--]fs/fat/fat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index 084ee44459..3007608360 100644..100755
--- a/fs/fat/fat.c
+++ b/fs/fat/fat.c
@@ -59,7 +59,8 @@ int disk_read (__u32 startblock, __u32 getsize, __u8 * bufptr)
if (cur_dev == NULL)
return -1;
if (cur_dev->block_read) {
- return cur_dev->block_read (cur_dev->dev, startblock, getsize, (unsigned long *)bufptr);
+ return cur_dev->block_read (cur_dev->dev
+ , startblock, getsize, (unsigned long *)bufptr);
}
return -1;
}
@@ -996,7 +997,8 @@ file_fat_detectfs(void)
memcpy (vol_label, volinfo.volume_label, 11);
vol_label[11] = '\0';
volinfo.fs_type[5]='\0';
- printf("Partition %d: Filesystem: %s \"%s\"\n",cur_part,volinfo.fs_type,vol_label);
+ printf("Partition %d: Filesystem: %s \"%s\"\n"
+ ,cur_part,volinfo.fs_type,vol_label);
return 0;
}
OpenPOWER on IntegriCloud