Searched refs:arg (Results 176 - 200 of 1533) sorted by relevance

1234567891011>>

/drivers/spi/
H A Dspidev.c105 static void spidev_complete(void *arg) argument
107 complete(arg);
316 spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
336 (void __user *)arg, _IOC_SIZE(cmd));
339 (void __user *)arg, _IOC_SIZE(cmd));
366 (__u8 __user *)arg);
370 (__u32 __user *)arg);
374 (__u8 __user *)arg);
377 retval = __put_user(spi->bits_per_word, (__u8 __user *)arg);
380 retval = __put_user(spi->max_speed_hz, (__u32 __user *)arg);
493 spidev_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/ide/
H A Dide-disk.c469 static int set_multcount(ide_drive_t *drive, int arg) argument
474 if (arg < 0 || arg > (drive->id[ATA_ID_MAX_MULTSECT] & 0xff))
483 drive->mult_req = arg;
488 return (drive->mult_count == arg) ? 0 : -EIO;
493 static int set_nowerr(ide_drive_t *drive, int arg) argument
495 if (arg < 0 || arg > 1)
498 if (arg)
503 drive->bad_wstat = arg
559 set_wcache(ide_drive_t *drive, int arg) argument
599 set_acoustic(ide_drive_t *drive, int arg) argument
620 set_addressing(ide_drive_t *drive, int arg) argument
[all...]
/drivers/media/
H A Dmedia-devnode.c120 __media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg, argument
122 unsigned long arg))
132 return ioctl_func(filp, cmd, arg);
135 static long media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
139 return __media_ioctl(filp, cmd, arg, mdev->fops->ioctl);
145 unsigned long arg)
149 return __media_ioctl(filp, cmd, arg, mdev->fops->compat_ioctl);
144 media_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
/drivers/net/wireless/brcm80211/brcmutil/
H A Dutils.c119 void *arg), void *arg)
126 if (match_fn == NULL || match_fn(p, arg)) {
153 bool (*fn)(struct sk_buff *, void *), void *arg)
160 if (fn == NULL || (*fn) (p, arg)) {
170 bool (*fn)(struct sk_buff *, void *), void *arg)
174 brcmu_pktq_pflush(pq, prec, dir, fn, arg);
117 brcmu_pktq_pdeq_match(struct pktq *pq, int prec, bool (*match_fn)(struct sk_buff *skb, void *arg), void *arg) argument
152 brcmu_pktq_pflush(struct pktq *pq, int prec, bool dir, bool (*fn)(struct sk_buff *, void *), void *arg) argument
169 brcmu_pktq_flush(struct pktq *pq, bool dir, bool (*fn)(struct sk_buff *, void *), void *arg) argument
/drivers/usb/core/
H A Ddevio.c103 #define snoop(dev, format, arg...) \
106 dev_info(dev , format , ## arg); \
968 static int proc_control(struct usb_dev_state *ps, void __user *arg) argument
977 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1055 static int proc_bulk(struct usb_dev_state *ps, void __user *arg) argument
1064 if (copy_from_user(&bulk, arg, sizeof(bulk)))
1142 static int proc_resetep(struct usb_dev_state *ps, void __user *arg) argument
1147 if (get_user(ep, (unsigned int __user *)arg))
1160 static int proc_clearhalt(struct usb_dev_state *ps, void __user *arg) argument
1166 if (get_user(ep, (unsigned int __user *)arg))
1183 proc_getdriver(struct usb_dev_state *ps, void __user *arg) argument
1202 proc_connectinfo(struct usb_dev_state *ps, void __user *arg) argument
1219 proc_setintf(struct usb_dev_state *ps, void __user *arg) argument
1235 proc_setconfig(struct usb_dev_state *ps, void __user *arg) argument
1283 proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb, struct usbdevfs_iso_packet_desc __user *iso_frame_desc, void __user *arg) argument
1610 proc_submiturb(struct usb_dev_state *ps, void __user *arg) argument
1622 proc_unlinkurb(struct usb_dev_state *ps, void __user *arg) argument
1645 processcompl(struct async *as, void __user * __user *arg) argument
1705 proc_reapurb(struct usb_dev_state *ps, void __user *arg) argument
1718 proc_reapurbnonblock(struct usb_dev_state *ps, void __user *arg) argument
1763 proc_disconnectsignal_compat(struct usb_dev_state *ps, void __user *arg) argument
1801 proc_submiturb_compat(struct usb_dev_state *ps, void __user *arg) argument
1813 processcompl_compat(struct async *as, void __user * __user *arg) argument
1847 proc_reapurb_compat(struct usb_dev_state *ps, void __user *arg) argument
1860 proc_reapurbnonblock_compat(struct usb_dev_state *ps, void __user *arg) argument
1877 proc_disconnectsignal(struct usb_dev_state *ps, void __user *arg) argument
1888 proc_claiminterface(struct usb_dev_state *ps, void __user *arg) argument
1897 proc_releaseinterface(struct usb_dev_state *ps, void __user *arg) argument
1986 proc_ioctl_default(struct usb_dev_state *ps, void __user *arg) argument
1996 proc_ioctl_compat(struct usb_dev_state *ps, compat_uptr_t arg) argument
2014 proc_claim_port(struct usb_dev_state *ps, void __user *arg) argument
2028 proc_release_port(struct usb_dev_state *ps, void __user *arg) argument
2037 proc_get_capabilities(struct usb_dev_state *ps, void __user *arg) argument
2053 proc_disconnect_claim(struct usb_dev_state *ps, void __user *arg) argument
2085 proc_alloc_streams(struct usb_dev_state *ps, void __user *arg) argument
2105 proc_free_streams(struct usb_dev_state *ps, void __user *arg) argument
2313 usbdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
2324 usbdev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/video/fbdev/
H A Dau1100fb.h35 #define print_err(f, arg...) printk(KERN_ERR DRIVER_NAME ": " f "\n", ## arg)
36 #define print_warn(f, arg...) printk(KERN_WARNING DRIVER_NAME ": " f "\n", ## arg)
37 #define print_info(f, arg...) printk(KERN_INFO DRIVER_NAME ": " f "\n", ## arg)
40 #define print_dbg(f, arg...) printk(__FILE__ ": " f "\n", ## arg)
42 #define print_dbg(f, arg...) do {} while (0)
/drivers/acpi/acpica/
H A Ddsopcode.c317 next_op = op->common.value.arg;
402 next_op = op->common.value.arg;
496 next_op = op->common.value.arg;
592 status = acpi_ds_create_operand(walk_state, op->common.value.arg, 1);
685 union acpi_parse_object *arg; local
696 next_op = op->common.value.arg;
734 arg = acpi_ps_get_arg(op, 4);
735 while (arg) {
739 if (arg->common.aml_opcode == AML_INT_NAMEDFIELD_OP) {
740 node = arg
[all...]
H A Dhwxfsleep.c291 union acpi_object arg; local
306 arg_list.pointer = &arg;
307 arg.type = ACPI_TYPE_INTEGER;
308 arg.integer.value = sleep_state;
/drivers/macintosh/
H A Dnvram.c79 static long nvram_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
85 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0)
90 if (copy_to_user((void __user*)arg, &offset, sizeof(offset)) != 0)
/drivers/net/ppp/
H A Dpppox.c71 int pppox_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) argument
88 if (put_user(index , (int __user *) arg))
97 pppox_protos[sk->sk_protocol]->ioctl(sock, cmd, arg) : -ENOTTY;
/drivers/s390/char/
H A Dsclp_ctl.c92 unsigned long arg)
97 argp = compat_ptr(arg);
99 argp = (void __user *) arg;
91 sclp_ctl_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
/drivers/s390/net/
H A Dctcm_fsms.h161 void fsm_action_nop(fsm_instance *fi, int event, void *arg);
167 void ctcm_chx_txidle(fsm_instance *fi, int event, void *arg);
181 void ctcm_chx_txidle(fsm_instance * fi, int event, void *arg);
183 void ctcmpc_chx_rxidle(fsm_instance *fi, int event, void *arg);
240 static void dev_action_start(fsm_instance * fi, int event, void *arg);
241 static void dev_action_stop(fsm_instance * fi, int event, void *arg);
242 static void dev_action_restart(fsm_instance *fi, int event, void *arg);
243 static void dev_action_chup(fsm_instance * fi, int event, void *arg);
244 static void dev_action_chdown(fsm_instance * fi, int event, void *arg);
/drivers/video/fbdev/omap2/dss/
H A Ddispc-compat.c46 void *arg; member in struct:omap_dispc_isr_data
149 int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask) argument
164 if (isr_data->isr == isr && isr_data->arg == arg &&
181 isr_data->arg = arg;
203 int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask) argument
214 if (isr_data->isr != isr || isr_data->arg != arg ||
221 isr_data->arg
262 omap_dispc_irq_handler(int irq, void *arg) argument
[all...]
/drivers/xen/
H A Dgntalloc.c280 struct ioctl_gntalloc_alloc_gref __user *arg)
288 if (copy_from_user(&op, arg, sizeof(op))) {
326 if (copy_to_user(arg, &op, sizeof(op))) {
330 if (copy_to_user(arg->gref_ids, gref_ids,
343 void __user *arg)
351 if (copy_from_user(&op, arg, sizeof(op))) {
382 void __user *arg)
390 if (copy_from_user(&op, arg, sizeof(op)))
437 unsigned long arg)
443 return gntalloc_ioctl_alloc(priv, (void __user *)arg);
279 gntalloc_ioctl_alloc(struct gntalloc_file_private_data *priv, struct ioctl_gntalloc_alloc_gref __user *arg) argument
342 gntalloc_ioctl_dealloc(struct gntalloc_file_private_data *priv, void __user *arg) argument
381 gntalloc_ioctl_unmap_notify(struct gntalloc_file_private_data *priv, void __user *arg) argument
436 gntalloc_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/isdn/i4l/
H A Disdn_common.c354 int idx = isdn_dc2minor(cmd->driver, cmd->arg & 255);
355 unsigned long l2prot = (cmd->arg >> 8) & 255;
371 cmd->arg = (cmd->arg & 255) |
388 cmd.arg = ch;
424 i = isdn_dc2minor(di, c->arg);
437 wake_up_interruptible(&dev->drv[di]->snd_waitq[c->arg]);
440 dev->drv[di]->stavail += c->arg;
457 printk(KERN_DEBUG "ICALL (net): %d %ld %s\n", di, c->arg, c->parm.num);
461 cmd.arg
1273 isdn_ioctl(struct file *file, uint cmd, ulong arg) argument
1718 isdn_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/i2c/
H A Di2c-dev.c239 unsigned long arg)
247 (struct i2c_rdwr_ioctl_data __user *)arg,
329 unsigned long arg)
336 (struct i2c_smbus_ioctl_data __user *) arg,
413 static long i2cdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
418 dev_dbg(&client->adapter->dev, "ioctl, cmd=0x%02x, arg=0x%02lx\n",
419 cmd, arg);
434 if ((arg > 0x3ff) ||
435 (((client->flags & I2C_M_TEN) == 0) && arg > 0x7f))
437 if (cmd == I2C_SLAVE && i2cdev_check_addr(client->adapter, arg))
238 i2cdev_ioctl_rdrw(struct i2c_client *client, unsigned long arg) argument
328 i2cdev_ioctl_smbus(struct i2c_client *client, unsigned long arg) argument
[all...]
/drivers/isdn/act2000/
H A Dmodule.c252 void __user *arg; local
257 arg = (void __user *)a;
258 switch (c->arg) {
263 arg);
289 if (copy_from_user(tmp, arg,
298 if (copy_from_user(&cdef, arg,
315 if (!(chan = find_channel(card, c->arg & 0x0f)))
337 cmd.arg &= 0x0f;
344 if (!(chan = find_channel(card, c->arg & 0x0f)))
356 if (!(chan = find_channel(card, c->arg
[all...]
/drivers/message/fusion/
H A Dmptctl.c101 * arg contents specific to function.
103 static int mptctl_fw_download(unsigned long arg);
104 static int mptctl_getiocinfo(unsigned long arg, unsigned int cmd);
105 static int mptctl_gettargetinfo(unsigned long arg);
106 static int mptctl_readtest(unsigned long arg);
107 static int mptctl_mpt_command(unsigned long arg);
108 static int mptctl_eventquery(unsigned long arg);
109 static int mptctl_eventenable(unsigned long arg);
110 static int mptctl_eventreport(unsigned long arg);
111 static int mptctl_replace_fw(unsigned long arg);
621 __mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
699 mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg) argument
708 mptctl_do_reset(unsigned long arg) argument
757 mptctl_fw_download(unsigned long arg) argument
1237 mptctl_getiocinfo(unsigned long arg, unsigned int data_size) argument
1384 mptctl_gettargetinfo(unsigned long arg) argument
1509 mptctl_readtest(unsigned long arg) argument
1570 mptctl_eventquery(unsigned long arg) argument
1609 mptctl_eventenable(unsigned long arg) argument
1657 mptctl_eventreport(unsigned long arg) argument
1711 mptctl_replace_fw(unsigned long arg) argument
1779 mptctl_mpt_command(unsigned long arg) argument
2408 mptctl_hp_hostinfo(unsigned long arg, unsigned int data_size) argument
2660 mptctl_hp_targetinfo(unsigned long arg) argument
2821 compat_mptfwxfer_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
2861 compat_mpt_command(struct file *filp, unsigned int cmd, unsigned long arg) argument
2914 compat_mpctl_ioctl(struct file *f, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/mmc/core/
H A Dmmc_ops.c37 cmd.arg = card->rca << 16;
70 cmd.arg = card->rca << 16;
73 cmd.arg = 0;
110 cmd.arg = (host->dsr << 16) | 0xffff;
136 cmd.arg = 0;
161 cmd.arg = mmc_host_is_spi(host) ? 0 : ocr;
202 cmd.arg = 0;
223 cmd.arg = card->rca << 16;
234 mmc_send_cxd_native(struct mmc_host *host, u32 arg, u32 *cxd, int opcode) argument
243 cmd.arg
[all...]
/drivers/s390/crypto/
H A Dzcrypt_api.c791 static long zcrypt_ica_status(struct file *filp, unsigned long arg) argument
809 if (copy_to_user((void __user *) arg, pstat, sizeof(*pstat)))
816 unsigned long arg)
822 struct ica_rsa_modexpo __user *umex = (void __user *) arg;
839 struct ica_rsa_modexpo_crt __user *ucrt = (void __user *) arg;
856 struct ica_xcRB __user *uxcRB = (void __user *) arg;
873 struct ep11_urb __user *uxcrb = (void __user *)arg;
892 if (copy_to_user((char __user *) arg, status,
900 if (copy_to_user((char __user *) arg, qdepth,
908 if (copy_to_user((int __user *) arg, reqcn
815 zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
972 trans_modexpo32(struct file *filp, unsigned int cmd, unsigned long arg) argument
1014 trans_modexpo_crt32(struct file *filp, unsigned int cmd, unsigned long arg) argument
1067 trans_xcRB32(struct file *filp, unsigned int cmd, unsigned long arg) argument
1113 zcrypt_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/scsi/aacraid/
H A Dcommctrl.c52 * @arg: arguments to the ioctl call
60 static int ioctl_send_fib(struct aac_dev * dev, void __user *arg) argument
81 if (copy_from_user((void *)kfib, arg, sizeof(struct aac_fibhdr))) {
116 if (copy_from_user(kfib, arg, size)) {
149 if (copy_to_user(arg, (void *)kfib, size))
169 static int open_getadapter_fib(struct aac_dev * dev, void __user *arg) argument
222 if (copy_to_user(arg, &fibctx->unique,
235 * @arg: ioctl argument
241 static int next_getadapter_fib(struct aac_dev * dev, void __user *arg) argument
250 if(copy_from_user((void *)&f, arg, sizeo
386 close_getadapter_fib(struct aac_dev * dev, void __user *arg) argument
436 check_revision(struct aac_dev *dev, void __user *arg) argument
466 aac_send_raw_srb(struct aac_dev* dev, void __user * arg) argument
833 aac_get_pci_info(struct aac_dev* dev, void __user *arg) argument
848 aac_do_ioctl(struct aac_dev * dev, int cmd, void __user *arg) argument
[all...]
/drivers/tty/
H A Dn_r3964.c90 #define TRACE_M(fmt, arg...) do {} while (0)
95 #define TRACE_PS(fmt, arg...) do {} while (0)
100 #define TRACE_PE(fmt, arg...) do {} while (0)
105 #define TRACE_L(fmt, arg...) do {} while (0)
110 #define TRACE_Q(fmt, arg...) do {} while (0)
121 static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg);
124 static void add_msg(struct r3964_client_info *pClient, int msg_id, int arg,
138 unsigned int cmd, unsigned long arg);
750 static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg) argument
756 if ((arg
839 add_msg(struct r3964_client_info *pClient, int msg_id, int arg, int error_code, struct r3964_block_header *pBlock) argument
1183 r3964_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg) argument
[all...]
/drivers/isdn/hisax/
H A Dl3ni1.c141 ic.arg = NI1_STAT_INVOKE_RES;
174 ic.arg = NI1_STAT_INVOKE_ERR;
208 ic.arg = NI1_STAT_INVOKE_BRD;
483 l3ni1_status_send(struct l3_process *pc, u_char pr, void *arg) argument
509 l3ni1_msg_without_setup(struct l3_process *pc, u_char pr, void *arg) argument
746 l3ni1_check_messagetype_validity(struct l3_process *pc, int mt, void *arg) argument
902 l3ni1_release_req(struct l3_process *pc, u_char pr, void *arg) argument
914 l3ni1_release_cmpl(struct l3_process *pc, u_char pr, void *arg) argument
916 struct sk_buff *skb = arg;
1171 void *arg)
1170 l3ni1_setup_req(struct l3_process *pc, u_char pr, void *arg) argument
1285 l3ni1_call_proc(struct l3_process *pc, u_char pr, void *arg) argument
1324 l3ni1_setup_ack(struct l3_process *pc, u_char pr, void *arg) argument
1363 l3ni1_disconnect(struct l3_process *pc, u_char pr, void *arg) argument
1401 l3ni1_connect(struct l3_process *pc, u_char pr, void *arg) argument
1421 l3ni1_alerting(struct l3_process *pc, u_char pr, void *arg) argument
1439 l3ni1_setup(struct l3_process *pc, u_char pr, void *arg) argument
1605 l3ni1_reset(struct l3_process *pc, u_char pr, void *arg) argument
1611 l3ni1_disconnect_req(struct l3_process *pc, u_char pr, void *arg) argument
1650 l3ni1_setup_rsp(struct l3_process *pc, u_char pr, void *arg) argument
1668 l3ni1_connect_ack(struct l3_process *pc, u_char pr, void *arg) argument
1686 l3ni1_reject_req(struct l3_process *pc, u_char pr, void *arg) argument
1715 l3ni1_release(struct l3_process *pc, u_char pr, void *arg) argument
1749 l3ni1_alert_req(struct l3_process *pc, u_char pr, void *arg) argument
1760 l3ni1_proceed_req(struct l3_process *pc, u_char pr, void *arg) argument
1769 l3ni1_setup_ack_req(struct l3_process *pc, u_char pr, void *arg) argument
1805 l3ni1_progress(struct l3_process *pc, u_char pr, void *arg) argument
1862 l3ni1_notify(struct l3_process *pc, u_char pr, void *arg) argument
1903 l3ni1_status_enq(struct l3_process *pc, u_char pr, void *arg) argument
1915 l3ni1_information(struct l3_process *pc, u_char pr, void *arg) argument
1940 l3ni1_redir_req(struct l3_process *pc, u_char pr, void *arg) argument
2012 l3ni1_redir_req_early(struct l3_process *pc, u_char pr, void *arg) argument
2134 l3ni1_release_ind(struct l3_process *pc, u_char pr, void *arg) argument
2159 l3ni1_dummy(struct l3_process *pc, u_char pr, void *arg) argument
2164 l3ni1_t302(struct l3_process *pc, u_char pr, void *arg) argument
2174 l3ni1_t303(struct l3_process *pc, u_char pr, void *arg) argument
2189 l3ni1_t304(struct l3_process *pc, u_char pr, void *arg) argument
2200 l3ni1_t305(struct l3_process *pc, u_char pr, void *arg) argument
2229 l3ni1_t310(struct l3_process *pc, u_char pr, void *arg) argument
2239 l3ni1_t313(struct l3_process *pc, u_char pr, void *arg) argument
2249 l3ni1_t308_1(struct l3_process *pc, u_char pr, void *arg) argument
2258 l3ni1_t308_2(struct l3_process *pc, u_char pr, void *arg) argument
2266 l3ni1_t318(struct l3_process *pc, u_char pr, void *arg) argument
2278 l3ni1_t319(struct l3_process *pc, u_char pr, void *arg) argument
2288 l3ni1_restart(struct l3_process *pc, u_char pr, void *arg) argument
2296 l3ni1_status(struct l3_process *pc, u_char pr, void *arg) argument
2354 l3ni1_facility(struct l3_process *pc, u_char pr, void *arg) argument
2369 l3ni1_suspend_req(struct l3_process *pc, u_char pr, void *arg) argument
2398 l3ni1_suspend_ack(struct l3_process *pc, u_char pr, void *arg) argument
2415 l3ni1_suspend_rej(struct l3_process *pc, u_char pr, void *arg) argument
2443 l3ni1_resume_req(struct l3_process *pc, u_char pr, void *arg) argument
2473 l3ni1_resume_ack(struct l3_process *pc, u_char pr, void *arg) argument
2507 l3ni1_resume_rej(struct l3_process *pc, u_char pr, void *arg) argument
2536 l3ni1_global_restart(struct l3_process *pc, u_char pr, void *arg) argument
2591 l3ni1_dl_reset(struct l3_process *pc, u_char pr, void *arg) argument
2600 l3ni1_dl_release(struct l3_process *pc, u_char pr, void *arg) argument
2610 l3ni1_dl_reestablish(struct l3_process *pc, u_char pr, void *arg) argument
2618 l3ni1_dl_reest_status(struct l3_process *pc, u_char pr, void *arg) argument
2668 l3ni1_spid_send(struct l3_process *pc, u_char pr, void *arg) argument
2673 l3ni1_spid_epid(struct l3_process *pc, u_char pr, void *arg) argument
2687 l3ni1_spid_tout(struct l3_process *pc, u_char pr, void *arg) argument
2888 ni1up(struct PStack *st, int pr, void *arg) argument
3072 ni1down(struct PStack *st, int pr, void *arg) argument
3123 ni1man(struct PStack *st, int pr, void *arg) argument
[all...]
/drivers/net/wireless/cw1200/
H A Dtxrx.c359 struct wsm_set_tx_rate_retry_policy arg = { local
369 &arg.tbl[arg.num];
379 ++arg.num;
384 pr_debug("[TX policy] Upload %d policies\n", arg.num);
385 return wsm_set_tx_rate_retry_policy(priv, &arg);
855 struct wsm_tx_confirm *arg)
857 u8 queue_id = cw1200_queue_get_queue_id(arg->packet_id);
863 arg->status, arg
853 cw1200_tx_confirm_cb(struct cw1200_common *priv, int link_id, struct wsm_tx_confirm *arg) argument
1006 cw1200_rx_cb(struct cw1200_common *priv, struct wsm_rx *arg, int link_id, struct sk_buff **skb_p) argument
[all...]
/drivers/edac/
H A Dmpc85xx_edac.h17 #define mpc85xx_printk(level, fmt, arg...) \
18 edac_printk(level, "MPC85xx", fmt, ##arg)
20 #define mpc85xx_mc_printk(mci, level, fmt, arg...) \
21 edac_mc_chipset_printk(mci, level, "MPC85xx", fmt, ##arg)

Completed in 777 milliseconds

1234567891011>>