Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/staging/comedi/
Dcomedi_compat32.c171 struct comedi32_cmd_struct __user *cmd32) in get_compat_cmd() argument
180 if (!access_ok(VERIFY_READ, cmd32, sizeof(*cmd32)) in get_compat_cmd()
185 err |= __get_user(temp.uint, &cmd32->subdev); in get_compat_cmd()
187 err |= __get_user(temp.uint, &cmd32->flags); in get_compat_cmd()
189 err |= __get_user(temp.uint, &cmd32->start_src); in get_compat_cmd()
191 err |= __get_user(temp.uint, &cmd32->start_arg); in get_compat_cmd()
193 err |= __get_user(temp.uint, &cmd32->scan_begin_src); in get_compat_cmd()
195 err |= __get_user(temp.uint, &cmd32->scan_begin_arg); in get_compat_cmd()
197 err |= __get_user(temp.uint, &cmd32->convert_src); in get_compat_cmd()
199 err |= __get_user(temp.uint, &cmd32->convert_arg); in get_compat_cmd()
[all …]
/linux-3.4.99/net/atm/
Dioctl.c223 unsigned int cmd32; member
307 static int do_atm_ioctl(struct socket *sock, unsigned int cmd32, in do_atm_ioctl() argument
313 switch (cmd32) { in do_atm_ioctl()
322 return do_atmif_sioc(sock, cmd32, arg); in do_atm_ioctl()
326 if (cmd32 == atm_ioctl_map[i].cmd32) { in do_atm_ioctl()
/linux-3.4.99/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-3.4.99/block/
Dcompat_ioctl.c286 unsigned int cmd32; member
311 if (cmd == fd_ioctl_trans_table[i].cmd32) { in compat_fd_ioctl()