diff options
Diffstat (limited to 'arch/mips/kernel')
| -rw-r--r-- | arch/mips/kernel/apm.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/syscall.c | 8 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/kernel/apm.c b/arch/mips/kernel/apm.c index 15f46b4471f..7bdbcd811b5 100644 --- a/arch/mips/kernel/apm.c +++ b/arch/mips/kernel/apm.c @@ -260,7 +260,7 @@ static unsigned int apm_poll(struct file *fp, poll_table * wait)   *   has acknowledge does the actual suspend happen.   */  static int -apm_ioctl(struct inode * inode, struct file *filp, u_int cmd, u_long arg) +apm_ioctl(struct inode * inode, struct file *filp, unsigned int cmd, unsigned long arg)  {  	struct apm_user *as = filp->private_data;  	unsigned long flags; diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index 5e8a18a8e2b..6da8c68e89d 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c @@ -301,7 +301,7 @@ asmlinkage int _sys_sysmips(int cmd, long arg1, int arg2, int arg3)   *   * This is really horribly ugly.   */ -asmlinkage int sys_ipc (uint call, int first, int second, +asmlinkage int sys_ipc (unsigned int call, int first, int second,  			unsigned long third, void __user *ptr, long fifth)  {  	int version, ret; @@ -359,18 +359,18 @@ asmlinkage int sys_ipc (uint call, int first, int second,  	case SHMAT:  		switch (version) {  		default: { -			ulong raddr; +			unsigned long raddr;  			ret = do_shmat (first, (char __user *) ptr, second,  					&raddr);  			if (ret)  				return ret; -			return put_user (raddr, (ulong __user *) third); +			return put_user (raddr, (unsigned long __user *) third);  		}  		case 1:	/* iBCS2 emulator entry point */  			if (!segment_eq(get_fs(), get_ds()))  				return -EINVAL;  			return do_shmat (first, (char __user *) ptr, second, -					 (ulong *) third); +					 (unsigned long *) third);  		}  	case SHMDT:  		return sys_shmdt ((char __user *)ptr);  |