diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 23:46:15 +0100 | 
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 23:46:15 +0100 | 
| commit | 49a89efbbbcc178a39555c43bd59a7593c429664 (patch) | |
| tree | 93ab78ec340d3f2fe23f9f853edd0bd62dcc64bb /arch/mips/kernel/sysirix.c | |
| parent | 10cc3529072d5415fb040018a8a99aa7a60190b6 (diff) | |
| download | olio-linux-3.10-49a89efbbbcc178a39555c43bd59a7593c429664.tar.xz olio-linux-3.10-49a89efbbbcc178a39555c43bd59a7593c429664.zip  | |
[MIPS] Fix "no space between function name and open parenthesis" warnings.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/sysirix.c')
| -rw-r--r-- | arch/mips/kernel/sysirix.c | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c index 93a148486f8..b50239574c9 100644 --- a/arch/mips/kernel/sysirix.c +++ b/arch/mips/kernel/sysirix.c @@ -486,10 +486,10 @@ asmlinkage int irix_syssgi(struct pt_regs *regs)  		switch (arg1) {  		case SGI_INV_SIZEOF: -			retval = sizeof (inventory_t); +			retval = sizeof(inventory_t);  			break;  		case SGI_INV_READ: -			retval = dump_inventory_to_user (buffer, count); +			retval = dump_inventory_to_user(buffer, count);  			break;  		default:  			retval = -EINVAL; @@ -1042,9 +1042,9 @@ asmlinkage unsigned long irix_mmap32(unsigned long addr, size_t len, int prot,  			long max_size = offset + len;  			if (max_size > file->f_path.dentry->d_inode->i_size) { -				old_pos = sys_lseek (fd, max_size - 1, 0); -				sys_write (fd, (void __user *) "", 1); -				sys_lseek (fd, old_pos, 0); +				old_pos = sys_lseek(fd, max_size - 1, 0); +				sys_write(fd, (void __user *) "", 1); +				sys_lseek(fd, old_pos, 0);  			}  		}  	} @@ -1176,7 +1176,7 @@ static int irix_xstat32_xlate(struct kstat *stat, void __user *ubuf)  	ub.st_ctime1  = stat->atime.tv_nsec;  	ub.st_blksize = stat->blksize;  	ub.st_blocks  = stat->blocks; -	strcpy (ub.st_fstype, "efs"); +	strcpy(ub.st_fstype, "efs");  	return copy_to_user(ubuf, &ub, sizeof(ub)) ? -EFAULT : 0;  } @@ -1208,7 +1208,7 @@ static int irix_xstat64_xlate(struct kstat *stat, void __user *ubuf)  	ks.st_nlink = (u32) stat->nlink;  	ks.st_uid = (s32) stat->uid;  	ks.st_gid = (s32) stat->gid; -	ks.st_rdev = sysv_encode_dev (stat->rdev); +	ks.st_rdev = sysv_encode_dev(stat->rdev);  	ks.st_pad2[0] = ks.st_pad2[1] = 0;  	ks.st_size = (long long) stat->size;  	ks.st_pad3 = 0; @@ -1527,9 +1527,9 @@ asmlinkage int irix_mmap64(struct pt_regs *regs)  			long max_size = off2 + len;  			if (max_size > file->f_path.dentry->d_inode->i_size) { -				old_pos = sys_lseek (fd, max_size - 1, 0); -				sys_write (fd, (void __user *) "", 1); -				sys_lseek (fd, old_pos, 0); +				old_pos = sys_lseek(fd, max_size - 1, 0); +				sys_write(fd, (void __user *) "", 1); +				sys_lseek(fd, old_pos, 0);  			}  		}  	}  |