|
@@ -143,10 +143,10 @@ static int bnep_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigne
|
|
|
{
|
|
|
if (cmd == BNEPGETCONNLIST) {
|
|
|
struct bnep_connlist_req cl;
|
|
|
- uint32_t uci;
|
|
|
+ u32 uci;
|
|
|
int err;
|
|
|
|
|
|
- if (get_user(cl.cnum, (uint32_t __user *) arg) ||
|
|
|
+ if (get_user(cl.cnum, (u32 __user *) arg) ||
|
|
|
get_user(uci, (u32 __user *) (arg + 4)))
|
|
|
return -EFAULT;
|
|
|
|
|
@@ -157,7 +157,7 @@ static int bnep_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigne
|
|
|
|
|
|
err = bnep_get_connlist(&cl);
|
|
|
|
|
|
- if (!err && put_user(cl.cnum, (uint32_t __user *) arg))
|
|
|
+ if (!err && put_user(cl.cnum, (u32 __user *) arg))
|
|
|
err = -EFAULT;
|
|
|
|
|
|
return err;
|