FAT: cosmetic: Remove extra spaces

Remove spaces before opening parentheses in function calls.

Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Cc: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Benoît Thébaudeau 2012-07-20 15:18:44 +02:00 committed by Wolfgang Denk
parent 83f83d1935
commit 9795e07b04

View file

@ -270,8 +270,7 @@ static __u32 get_fatent (fsdata *mydata, __u32 entry)
* Return 0 on success, -1 otherwise. * Return 0 on success, -1 otherwise.
*/ */
static int static int
get_cluster (fsdata *mydata, __u32 clustnum, __u8 *buffer, get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
unsigned long size)
{ {
__u32 idx = 0; __u32 idx = 0;
__u32 startsect; __u32 startsect;
@ -770,8 +769,7 @@ __u8 do_fat_read_block[MAX_CLUSTSIZE]
__aligned(ARCH_DMA_MINALIGN); __aligned(ARCH_DMA_MINALIGN);
long long
do_fat_read (const char *filename, void *buffer, unsigned long maxsize, do_fat_read(const char *filename, void *buffer, unsigned long maxsize, int dols)
int dols)
{ {
char fnamecopy[2048]; char fnamecopy[2048];
boot_sector bs; boot_sector bs;