Home
last modified time | relevance | path

Searched refs:cmd32 (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/staging/comedi/
Dcomedi_compat32.c166 struct comedi32_cmd_struct __user *cmd32) in get_compat_cmd() argument
175 if (!access_ok(VERIFY_READ, cmd32, sizeof(*cmd32)) || in get_compat_cmd()
180 err |= __get_user(temp.uint, &cmd32->subdev); in get_compat_cmd()
182 err |= __get_user(temp.uint, &cmd32->flags); in get_compat_cmd()
184 err |= __get_user(temp.uint, &cmd32->start_src); in get_compat_cmd()
186 err |= __get_user(temp.uint, &cmd32->start_arg); in get_compat_cmd()
188 err |= __get_user(temp.uint, &cmd32->scan_begin_src); in get_compat_cmd()
190 err |= __get_user(temp.uint, &cmd32->scan_begin_arg); in get_compat_cmd()
192 err |= __get_user(temp.uint, &cmd32->convert_src); in get_compat_cmd()
194 err |= __get_user(temp.uint, &cmd32->convert_arg); in get_compat_cmd()
[all …]
/linux-4.1.27/net/atm/
Dioctl.c221 unsigned int cmd32; member
305 static int do_atm_ioctl(struct socket *sock, unsigned int cmd32, in do_atm_ioctl() argument
311 switch (cmd32) { in do_atm_ioctl()
320 return do_atmif_sioc(sock, cmd32, arg); in do_atm_ioctl()
324 if (cmd32 == atm_ioctl_map[i].cmd32) { in do_atm_ioctl()
/linux-4.1.27/drivers/staging/rtl8712/
Drtl871x_mp.c108 u32 cmd32 = 0, val32 = 0; in fw_iocmd_read() local
113 cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx; in fw_iocmd_read()
114 if (r8712_fw_cmd(pAdapter, cmd32)) in fw_iocmd_read()
124 u32 cmd32 = 0; in fw_iocmd_write() local
131 cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx; in fw_iocmd_write()
132 return r8712_fw_cmd(pAdapter, cmd32); in fw_iocmd_write()
/linux-4.1.27/block/
Dcompat_ioctl.c287 unsigned int cmd32; member
312 if (cmd == fd_ioctl_trans_table[i].cmd32) { in compat_fd_ioctl()