Searched refs:cl (Results 51 - 75 of 371) sorted by relevance

1234567891011>>

/linux-master/net/bluetooth/bnep/
H A Dsock.c55 struct bnep_connlist_req cl; local
102 if (copy_from_user(&cl, argp, sizeof(cl)))
105 if (cl.cnum <= 0)
108 err = bnep_get_connlist(&cl);
109 if (!err && copy_to_user(argp, &cl, sizeof(cl)))
147 struct bnep_connlist_req cl; local
152 if (get_user(cl.cnum, p) || get_user(uci, p + 1))
155 cl
[all...]
/linux-master/drivers/misc/mei/
H A Ddebugfs.c61 struct mei_cl *cl; local
75 list_for_each_entry(cl, &dev->file_list, link) {
78 i, mei_cl_me_id(cl), cl->host_client_id, cl->state,
79 !list_empty(&cl->rd_completed), cl->writing_state,
80 cl->tx_cb_queued);
/linux-master/include/linux/
H A Dclkdev.h33 void clkdev_add(struct clk_lookup *cl);
34 void clkdev_drop(struct clk_lookup *cl);
/linux-master/net/sched/
H A Dsch_ets.c97 static u32 ets_class_id(struct Qdisc *sch, const struct ets_class *cl) argument
100 int band = cl - q->classes;
190 static bool ets_class_is_strict(struct ets_sched *q, const struct ets_class *cl) argument
192 unsigned int band = cl - q->classes;
201 struct ets_class *cl = ets_class_from_arg(sch, *arg); local
211 if (!cl) {
229 if (ets_class_is_strict(q, cl)) {
240 cl->quantum = quantum;
251 struct ets_class *cl = ets_class_from_arg(sch, arg); local
255 ets_class_id(sch, cl), NUL
269 struct ets_class *cl = ets_class_from_arg(sch, arg); local
286 struct ets_class *cl = ets_class_from_arg(sch, arg); local
300 struct ets_class *cl = ets_class_from_arg(sch, arg); local
325 struct ets_class *cl = ets_class_from_arg(sch, arg); local
350 ets_qdisc_tcf_block(struct Qdisc *sch, unsigned long cl, struct netlink_ext_ack *extack) argument
415 struct ets_class *cl; local
459 struct ets_class *cl; local
[all...]
H A Dsch_mq.c159 static struct netdev_queue *mq_queue_get(struct Qdisc *sch, unsigned long cl) argument
162 unsigned long ntx = cl - 1;
175 static int mq_graft(struct Qdisc *sch, unsigned long cl, struct Qdisc *new, argument
178 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
192 graft_offload.graft_params.queue = cl - 1;
201 static struct Qdisc *mq_leaf(struct Qdisc *sch, unsigned long cl) argument
203 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
217 static int mq_dump_class(struct Qdisc *sch, unsigned long cl, argument
220 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
223 tcm->tcm_handle |= TC_H_MIN(cl);
228 mq_dump_class_stats(struct Qdisc *sch, unsigned long cl, struct gnet_dump *d) argument
[all...]
/linux-master/drivers/macintosh/
H A Dtherm_windtunnel.c121 write_reg( struct i2c_client *cl, int reg, int data, int len ) argument
133 if( i2c_master_send(cl, tmp, len) != len )
139 read_reg( struct i2c_client *cl, int reg, int len ) argument
146 if( i2c_master_send(cl, buf, 1) != 1 )
148 if( i2c_master_recv(cl, buf, len) != len )
358 attach_fan( struct i2c_client *cl )
364 if( read_reg(cl, 0x3d, 1) != 0x30 || read_reg(cl, 0x3e, 1) != 0x41 )
366 printk("ADM1030 fan controller [@%02x]\n", cl->addr );
368 x.fan = cl;
416 do_probe(struct i2c_client *cl) argument
[all...]
/linux-master/drivers/clk/hisilicon/
H A Dclk-hi3660-stub.c42 struct mbox_client cl; member in struct:hi3660_stub_clk_chan
88 dev_dbg(stub_clk_chan.cl.dev, "set rate msg[0]=0x%x msg[1]=0x%x\n",
132 stub_clk_chan.cl.dev = dev;
133 stub_clk_chan.cl.tx_done = NULL;
134 stub_clk_chan.cl.tx_block = false;
135 stub_clk_chan.cl.knows_txdone = false;
138 stub_clk_chan.mbox = mbox_request_channel(&stub_clk_chan.cl, 0);
/linux-master/drivers/firmware/imx/
H A Dimx-scu.c29 struct mbox_client cl; member in struct:imx_sc_chan
106 static void imx_scu_tx_done(struct mbox_client *cl, void *mssg, int r) argument
108 struct imx_sc_chan *sc_chan = container_of(cl, struct imx_sc_chan, cl);
115 struct imx_sc_chan *sc_chan = container_of(c, struct imx_sc_chan, cl);
266 struct mbox_client *cl; local
296 cl = &sc_chan->cl;
297 cl->dev = dev;
298 cl
[all...]
H A Dimx-scu-irq.c202 struct mbox_client *cl; local
210 cl = devm_kzalloc(dev, sizeof(*cl), GFP_KERNEL);
211 if (!cl)
214 cl->dev = dev;
215 cl->rx_callback = imx_scu_irq_callback;
218 ch = mbox_request_channel_byname(cl, "gip3");
222 devm_kfree(dev, cl);
/linux-master/tools/testing/selftests/net/netfilter/
H A Dnft_nat_zones.sh76 setup_ns "cl$i"
78 cl=$(eval echo \$cl"$i")
79 if ! ip link add veth"$i" netns "$gw" type veth peer name eth0 netns "$cl" > /dev/null 2>&1;then
86 cl=$(eval echo \$cl"$i")
87 echo netns exec "$cl" ip link set eth0 up
88 echo netns exec "$cl" sysctl -q net.ipv4.tcp_syn_retries=2
94 echo netns exec "$cl" ip addr add 10.1.0.3/24 dev eth0
95 echo netns exec "$cl" i
[all...]
/linux-master/drivers/mfd/
H A Dlp8788.c169 static int lp8788_probe(struct i2c_client *cl) argument
172 struct lp8788_platform_data *pdata = dev_get_platdata(&cl->dev);
175 lp = devm_kzalloc(&cl->dev, sizeof(struct lp8788), GFP_KERNEL);
179 lp->regmap = devm_regmap_init_i2c(cl, &lp8788_regmap_config);
182 dev_err(&cl->dev, "regmap init i2c err: %d\n", ret);
187 lp->dev = &cl->dev;
188 i2c_set_clientdata(cl, lp);
194 ret = lp8788_irq_init(lp, cl->irq);
210 static void lp8788_remove(struct i2c_client *cl) argument
212 struct lp8788 *lp = i2c_get_clientdata(cl);
[all...]
H A Dti-lmu.c135 static int ti_lmu_probe(struct i2c_client *cl) argument
137 const struct i2c_device_id *id = i2c_client_get_device_id(cl);
138 struct device *dev = &cl->dev;
156 lmu->dev = &cl->dev;
165 lmu->regmap = devm_regmap_init_i2c(cl, &regmap_cfg);
192 i2c_set_clientdata(cl, lmu);
H A Dlp3943.c105 static int lp3943_probe(struct i2c_client *cl) argument
108 struct device *dev = &cl->dev;
114 lp3943->regmap = devm_regmap_init_i2c(cl, &lp3943_regmap_config);
121 i2c_set_clientdata(cl, lp3943);
/linux-master/fs/ceph/
H A Dsnap.c153 struct ceph_client *cl = mdsc->fsc->client; local
166 doutc(cl, "%llx %p\n", r->ino, r);
192 struct ceph_client *cl = mdsc->fsc->client; local
195 doutc(cl, "%p %llx\n", realm, realm->ino);
295 struct ceph_client *cl = mdsc->fsc->client; local
309 doutc(cl, "%llx %p: %llx %p -> %llx %p\n", realm->ino, realm,
340 struct ceph_client *cl = mdsc->fsc->client; local
368 doutc(cl, "%llx %p: %p seq %lld (%u snaps) (unchanged)\n",
408 doutc(cl, "%llx %p: %p seq %lld (%u snaps)\n", realm->ino, realm,
426 pr_err_client(cl, "
437 struct ceph_client *cl = mdsc->fsc->client; local
534 struct ceph_client *cl = ceph_inode_to_client(inode); local
667 struct ceph_client *cl = mdsc->fsc->client; local
725 struct ceph_client *cl = mdsc->fsc->client; local
783 struct ceph_client *cl = mdsc->fsc->client; local
944 struct ceph_client *cl = mdsc->fsc->client; local
1020 struct ceph_client *cl = mdsc->fsc->client; local
1191 struct ceph_client *cl = mdsc->fsc->client; local
1289 struct ceph_client *cl = mdsc->fsc->client; local
1319 struct ceph_client *cl = mdsc->fsc->client; local
[all...]
H A Dinode.c135 struct ceph_client *cl = mdsc->fsc->client; local
152 doutc(cl, "no inode found for %llx.%llx\n", vino.ino, vino.snap);
156 doutc(cl, "on %llx=%llx.%llx got %p new %d\n",
167 struct ceph_client *cl = ceph_inode_to_client(parent); local
180 pr_warn_once_client(cl, "bad snapdir parent type (mode=0%o)\n",
186 pr_warn_once_client(cl, "bad snapdir inode type (mode=0%o)\n",
212 doutc(cl, "Failed to alloc snapdir fscrypt_auth\n");
259 struct ceph_client *cl = ceph_inode_to_client(inode); local
290 doutc(cl, "added %p %llx.%llx frag %x\n", inode, ceph_vinop(inode), f);
323 struct ceph_client *cl local
382 struct ceph_client *cl = ceph_inode_to_client(inode); local
467 struct ceph_client *cl = ceph_inode_to_client(inode); local
692 struct ceph_client *cl = ceph_inode_to_client(inode); local
761 struct ceph_client *cl = ceph_inode_to_client(inode); local
834 struct ceph_client *cl = ceph_inode_to_client(inode); local
907 struct ceph_client *cl = mdsc->fsc->client; local
947 struct ceph_client *cl = mdsc->fsc->client; local
1349 struct ceph_client *cl = ceph_inode_to_client(dir); local
1457 struct ceph_client *cl = ceph_inode_to_client(in); local
1526 struct ceph_client *cl = fsc->client; local
1809 struct ceph_client *cl = session->s_mdsc->fsc->client; local
1860 struct ceph_client *cl = ceph_inode_to_client(dir); local
1903 struct ceph_client *cl = session->s_mdsc->fsc->client; local
2098 struct ceph_client *cl = ceph_inode_to_client(inode); local
2118 struct ceph_client *cl = fsc->client; local
2135 struct ceph_client *cl = ceph_inode_to_client(inode); local
2199 struct ceph_client *cl = ceph_inode_to_client(inode); local
2262 struct ceph_client *cl = ceph_inode_to_client(inode); local
2337 struct ceph_client *cl = ceph_inode_to_client(inode); local
2474 struct ceph_client *cl = ceph_inode_to_client(inode); local
2902 struct ceph_client *cl = fsc->client; local
2950 struct ceph_client *cl = fsc->client; local
[all...]
H A Daddr.c83 struct ceph_client *cl = ceph_inode_to_client(inode); local
88 doutc(cl, "%llx.%llx %p idx %lu -- already dirty\n",
114 doutc(cl, "%llx.%llx %p idx %lu head %d/%d -> %d/%d "
141 struct ceph_client *cl = ceph_inode_to_client(inode); local
147 doutc(cl, "%llx.%llx idx %lu partial dirty page %zu~%zu\n",
154 doutc(cl, "%llx.%llx idx %lu full dirty page\n",
227 struct ceph_client *cl = fsc->client; local
237 doutc(cl, "result %d subreq->len=%zu i_size=%lld\n", req->r_result,
332 struct ceph_client *cl = fsc->client; local
369 doutc(cl, "
422 struct ceph_client *cl = ceph_inode_to_client(inode); local
541 struct ceph_client *cl = ceph_inode_to_client(inode); local
638 struct ceph_client *cl = fsc->client; local
813 struct ceph_client *cl = ceph_inode_to_client(inode); local
915 struct ceph_client *cl = fsc->client; local
1413 struct ceph_client *cl = ceph_inode_to_client(inode); local
1516 struct ceph_client *cl = ceph_inode_to_client(inode); local
1580 struct ceph_client *cl = ceph_inode_to_client(inode); local
1670 struct ceph_client *cl = ceph_inode_to_client(inode); local
1773 struct ceph_client *cl = ceph_inode_to_client(inode); local
1820 struct ceph_client *cl = fsc->client; local
1976 struct ceph_client *cl = fsc->client; local
2148 struct ceph_client *cl = ceph_inode_to_client(inode); local
[all...]
H A Dmds_client.c415 struct ceph_client *cl = req->r_mdsc->fsc->client; local
438 pr_err_client(cl, "dir contents are larger than expected\n");
459 doutc(cl, "parsed dir dname '%.*s'\n", _name_len, _name);
519 pr_err_client(cl, "unable to decode %.*s, got %d\n",
544 pr_err_client(cl, "problem parsing dir contents %d\n", err);
575 struct ceph_client *cl = s->s_mdsc->fsc->client; local
579 doutc(cl, "got %u sets of delegated inodes\n", sets);
588 pr_warn_ratelimited_client(cl,
598 doutc(cl, "added delegated inode 0x%llx\n", start - 1);
600 pr_warn_client(cl,
751 struct ceph_client *cl = s->s_mdsc->fsc->client; local
839 struct ceph_client *cl = fsc->client; local
966 struct ceph_client *cl = mdsc->fsc->client; local
1167 struct ceph_client *cl = mdsc->fsc->client; local
1293 struct ceph_client *cl = mdsc->fsc->client; local
1547 struct ceph_client *cl = mdsc->fsc->client; local
1718 struct ceph_client *cl = mdsc->fsc->client; local
1735 struct ceph_client *cl = mdsc->fsc->client; local
1765 struct ceph_client *cl = session->s_mdsc->fsc->client; local
1789 struct ceph_client *cl = mdsc->fsc->client; local
1828 struct ceph_client *cl = session->s_mdsc->fsc->client; local
1895 struct ceph_client *cl = ceph_inode_to_client(inode); local
2009 struct ceph_client *cl = session->s_mdsc->fsc->client; local
2025 struct ceph_client *cl = mdsc->fsc->client; local
2056 struct ceph_client *cl = mdsc->fsc->client; local
2077 struct ceph_client *cl = mdsc->fsc->client; local
2111 struct ceph_client *cl = session->s_mdsc->fsc->client; local
2172 struct ceph_client *cl = mdsc->fsc->client; local
2255 struct ceph_client *cl = mdsc->fsc->client; local
2276 struct ceph_client *cl = mdsc->fsc->client; local
2302 struct ceph_client *cl = mdsc->fsc->client; local
2318 struct ceph_client *cl = mdsc->fsc->client; local
2426 struct ceph_client *cl = mdsc->fsc->client; local
2464 struct ceph_client *cl = mdsc->fsc->client; local
2489 struct ceph_client *cl = mdsc->fsc->client; local
2504 struct ceph_client *cl = mdsc->fsc->client; local
2710 struct ceph_client *cl = mdsc->fsc->client; local
2885 struct ceph_client *cl = mdsc->fsc->client; local
2974 struct ceph_client *cl = mdsc->fsc->client; local
3263 struct ceph_client *cl = mdsc->fsc->client; local
3395 struct ceph_client *cl = mdsc->fsc->client; local
3601 struct ceph_client *cl = mdsc->fsc->client; local
3623 struct ceph_client *cl = mdsc->fsc->client; local
3647 struct ceph_client *cl = mdsc->fsc->client; local
3695 struct ceph_client *cl = mdsc->fsc->client; local
3751 struct ceph_client *cl = mdsc->fsc->client; local
3772 struct ceph_client *cl = req->r_mdsc->fsc->client; local
3796 struct ceph_client *cl = mdsc->fsc->client; local
4009 struct ceph_client *cl = mdsc->fsc->client; local
4109 struct ceph_client *cl = mdsc->fsc->client; local
4402 struct ceph_client *cl = req->r_mdsc->fsc->client; local
4414 struct ceph_client *cl = req->r_mdsc->fsc->client; local
4578 struct ceph_client *cl = ceph_inode_to_client(inode); local
4771 struct ceph_client *cl = mdsc->fsc->client; local
4840 struct ceph_client *cl = mdsc->fsc->client; local
5020 struct ceph_client *cl = mdsc->fsc->client; local
5190 struct ceph_client *cl = mdsc->fsc->client; local
5300 struct ceph_client *cl = session->s_mdsc->fsc->client; local
5340 struct ceph_client *cl = mdsc->fsc->client; local
5358 struct ceph_client *cl = s->s_mdsc->fsc->client; local
5384 struct ceph_client *cl = s->s_mdsc->fsc->client; local
5557 struct ceph_client *cl = mdsc->fsc->client; local
5583 struct ceph_client *cl = s->s_mdsc->fsc->client; local
5613 struct ceph_client *cl = mdsc->fsc->client; local
5723 struct ceph_client *cl = mdsc->fsc->client; local
5800 struct ceph_client *cl = mdsc->fsc->client; local
5864 struct ceph_client *cl = mdsc->fsc->client; local
5908 struct ceph_client *cl = mdsc->fsc->client; local
6040 struct ceph_client *cl = fsc->client; local
6113 struct ceph_client *cl = mdsc->fsc->client; local
6210 struct ceph_client *cl = mdsc->fsc->client; local
[all...]
H A Dcaps.c205 struct ceph_client *cl = mdsc->fsc->client; local
216 doutc(cl, "ctx=%p need=%d\n", ctx, need);
276 pr_warn_client(cl, "ctx=%p ENOMEM need=%d got=%d\n", ctx, need,
302 doutc(cl, "ctx=%p %d = %d used + %d resv + %d avail\n", ctx,
311 struct ceph_client *cl = mdsc->fsc->client; local
316 doutc(cl, "ctx=%p count=%d\n", ctx, ctx->count);
333 struct ceph_client *cl = mdsc->fsc->client; local
365 doutc(cl, "ctx=%p (%d) %d = %d used + %d resv + %d avail\n", ctx,
388 struct ceph_client *cl = mdsc->fsc->client; local
391 doutc(cl, "
580 struct ceph_client *cl = ceph_inode_to_client(inode); local
656 struct ceph_client *cl = ceph_inode_to_client(inode); local
789 struct ceph_client *cl = cap->session->s_mdsc->fsc->client; local
814 struct ceph_client *cl = ceph_inode_to_client(inode); local
871 struct ceph_client *cl = s->s_mdsc->fsc->client; local
893 struct ceph_client *cl = ceph_inode_to_client(inode); local
983 struct ceph_client *cl = ceph_inode_to_client(inode); local
1137 struct ceph_client *cl = session->s_mdsc->fsc->client; local
1409 struct ceph_client *cl = ceph_inode_to_client(inode); local
1537 struct ceph_client *cl = ceph_inode_to_client(inode); local
1636 struct ceph_client *cl = mdsc->fsc->client; variable in typeref:struct:ceph_client
1734 struct ceph_client *cl = ceph_inode_to_client(inode); local
1801 struct ceph_client *cl = ceph_inode_to_client(inode); local
1926 struct ceph_client *cl = ceph_inode_to_client(inode); local
1974 struct ceph_client *cl = ceph_inode_to_client(inode); variable in typeref:struct:ceph_client
2024 struct ceph_client *cl = ceph_inode_to_client(inode); local
2367 struct ceph_client *cl = ceph_inode_to_client(inode); local
2485 struct ceph_client *cl = ceph_inode_to_client(inode); local
2537 struct ceph_client *cl = ceph_inode_to_client(inode); local
2573 struct ceph_client *cl = mdsc->fsc->client; variable in typeref:struct:ceph_client
2651 struct ceph_client *cl = mdsc->fsc->client; local
2703 struct ceph_client *cl = mdsc->fsc->client; local
2770 struct ceph_client *cl = ceph_inode_to_client(inode); local
2823 struct ceph_client *cl = ceph_inode_to_client(inode); local
2982 struct ceph_client *cl = ceph_inode_to_client(inode); local
3200 struct ceph_client *cl = ceph_inode_to_client(inode); local
3235 struct ceph_client *cl = ceph_inode_to_client(inode); local
3345 struct ceph_client *cl = ceph_inode_to_client(inode); local
3430 struct ceph_client *cl = ceph_inode_to_client(inode); local
3492 struct ceph_client *cl = ceph_inode_to_client(inode); variable in typeref:struct:ceph_client
3812 struct ceph_client *cl = mdsc->fsc->client; variable in typeref:struct:ceph_client
3922 struct ceph_client *cl = mdsc->fsc->client; local
3968 struct ceph_client *cl = mdsc->fsc->client; local
4020 struct ceph_client *cl = ceph_inode_to_client(inode); local
4063 struct ceph_client *cl = mdsc->fsc->client; local
4200 struct ceph_client *cl = mdsc->fsc->client; local
4324 struct ceph_client *cl = mdsc->fsc->client; local
4604 struct ceph_client *cl = mdsc->fsc->client; local
4658 struct ceph_client *cl = mdsc->fsc->client; local
4817 struct ceph_client *cl = ceph_inode_to_client(inode); local
4910 struct ceph_client *cl; local
4960 struct ceph_client *cl = mdsc->fsc->client; local
4986 struct ceph_client *cl = fsc->client; local
[all...]
/linux-master/fs/dlm/
H A Dconfig.c118 struct dlm_cluster *cl = config_item_to_cluster(item); local
119 return sprintf(buf, "%s\n", cl->cl_cluster_name);
125 struct dlm_cluster *cl = config_item_to_cluster(item); local
129 strscpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name));
135 static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field, argument
164 struct dlm_cluster *cl = config_item_to_cluster(item); \
165 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
170 struct dlm_cluster *cl
405 struct dlm_cluster *cl = NULL; local
453 struct dlm_cluster *cl = config_item_to_cluster(i); local
465 struct dlm_cluster *cl = config_item_to_cluster(i); local
[all...]
/linux-master/arch/arm64/include/asm/
H A Datomic_ll_sc.h42 #define ATOMIC_OP_RETURN(name, mb, acq, rel, cl, op, asm_op, constraint)\
58 : cl); \
63 #define ATOMIC_FETCH_OP(name, mb, acq, rel, cl, op, asm_op, constraint) \
79 : cl); \
138 #define ATOMIC64_OP_RETURN(name, mb, acq, rel, cl, op, asm_op, constraint)\
154 : cl); \
159 #define ATOMIC64_FETCH_OP(name, mb, acq, rel, cl, op, asm_op, constraint)\
175 : cl); \
239 #define __CMPXCHG_CASE(w, sfx, name, sz, mb, acq, rel, cl, constraint) \
268 : cl); \
[all...]
/linux-master/arch/x86/math-emu/
H A Dreg_u_sub.S83 shrd %cl,%ebx,%edx
84 shrd %cl,%eax,%ebx
85 shr %cl,%eax
92 subb $32,%cl
95 shrd %cl,%eax,%edx
96 shr %cl,%eax
223 shld %cl,%ebx,%eax
224 shld %cl,%edx,%ebx
225 shl %cl,%edx
H A Dreg_norm.S51 shld %cl,%eax,%edx
52 shl %cl,%eax
129 shld %cl,%eax,%edx
130 shl %cl,%eax
/linux-master/drivers/md/bcache/
H A Drequest.h6 struct closure cl; member in struct:data_insert_op
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Dmt792x_acpi_sar.c355 mt792x_acpi_get_mtcl_map(int row, int column, struct mt792x_asar_cl *cl) argument
360 mode_6g = (cl->mode_6g > 0x02) ? 0 : cl->mode_6g;
361 mode_5g9 = (cl->mode_5g9 > 0x01) ? 0 : cl->mode_5g9;
363 if ((cl->cl6g[row] & BIT(column)) || cl->mode_6g == 0x02)
365 if (cl->version > 1 && cl->cl5g9[row] & BIT(column))
386 struct mt792x_asar_cl *cl; local
[all...]
/linux-master/drivers/firmware/
H A Draspberrypi.c29 struct mbox_client cl; member in struct:rpi_firmware
39 static void response_callback(struct mbox_client *cl, void *msg) argument
41 struct rpi_firmware *fw = container_of(cl, struct rpi_firmware, cl);
68 dev_err(fw->cl.dev, "mbox_send_message returned %d\n", ret);
125 dev_err(fw->cl.dev, "Request 0x%08x returned status 0x%08x\n",
196 dev_info(fw->cl.dev, "Attached to firmware from %ptT\n", &date_and_time);
288 fw->cl.dev = dev;
289 fw->cl.rx_callback = response_callback;
290 fw->cl
[all...]

Completed in 238 milliseconds

1234567891011>>