Bluetooth: Use kernel int types instead of ones from stdint.h
[firefly-linux-kernel-4.4.55.git] / net / bluetooth / cmtp / sock.c
index 3f2dd5c25ae516f3d267f1f038cb151af21c04c8..1230faaac29b01c54abac33a4913851db085ab22 100644 (file)
@@ -137,10 +137,10 @@ static int cmtp_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigne
 {
        if (cmd == CMTPGETCONNLIST) {
                struct cmtp_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;
 
@@ -151,7 +151,7 @@ static int cmtp_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigne
 
                err = cmtp_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;