Searched refs:drvr (Results 1 - 25 of 34) sorted by relevance

12

/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dproto.h19 int (*hdrpull)(struct brcmf_pub *drvr, bool do_fws,
21 int (*query_dcmd)(struct brcmf_pub *drvr, int ifidx, uint cmd,
23 int (*set_dcmd)(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf,
25 int (*tx_queue_data)(struct brcmf_pub *drvr, int ifidx,
27 int (*txdata)(struct brcmf_pub *drvr, int ifidx, u8 offset,
29 void (*configure_addr_mode)(struct brcmf_pub *drvr, int ifidx,
31 void (*delete_peer)(struct brcmf_pub *drvr, int ifidx,
33 void (*add_tdls_peer)(struct brcmf_pub *drvr, int ifidx,
39 int (*init_done)(struct brcmf_pub *drvr);
40 void (*debugfs_create)(struct brcmf_pub *drvr);
48 brcmf_proto_hdrpull(struct brcmf_pub *drvr, bool do_fws, struct sk_buff *skb, struct brcmf_if **ifp) argument
63 brcmf_proto_query_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf, uint len, int *fwerr) argument
69 brcmf_proto_set_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf, uint len, int *fwerr) argument
76 brcmf_proto_tx_queue_data(struct brcmf_pub *drvr, int ifidx, struct sk_buff *skb) argument
82 brcmf_proto_txdata(struct brcmf_pub *drvr, int ifidx, u8 offset, struct sk_buff *skb) argument
88 brcmf_proto_configure_addr_mode(struct brcmf_pub *drvr, int ifidx, enum proto_addr_mode addr_mode) argument
94 brcmf_proto_delete_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
99 brcmf_proto_add_tdls_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
118 brcmf_proto_add_if(struct brcmf_pub *drvr, struct brcmf_if *ifp) argument
126 brcmf_proto_del_if(struct brcmf_pub *drvr, struct brcmf_if *ifp) argument
134 brcmf_proto_reset_if(struct brcmf_pub *drvr, struct brcmf_if *ifp) argument
142 brcmf_proto_init_done(struct brcmf_pub *drvr) argument
150 brcmf_proto_debugfs_create(struct brcmf_pub *drvr) argument
[all...]
H A Dbcdc.h9 int brcmf_proto_bcdc_attach(struct brcmf_pub *drvr);
10 void brcmf_proto_bcdc_detach(struct brcmf_pub *drvr);
14 struct brcmf_fws_info *drvr_to_fws(struct brcmf_pub *drvr);
16 static inline int brcmf_proto_bcdc_attach(struct brcmf_pub *drvr) { return 0; } argument
17 static inline void brcmf_proto_bcdc_detach(struct brcmf_pub *drvr) {} argument
H A Dproto.c20 int brcmf_proto_attach(struct brcmf_pub *drvr) argument
30 drvr->proto = proto;
32 if (drvr->bus_if->proto_type == BRCMF_PROTO_BCDC) {
33 if (brcmf_proto_bcdc_attach(drvr))
35 } else if (drvr->bus_if->proto_type == BRCMF_PROTO_MSGBUF) {
36 if (brcmf_proto_msgbuf_attach(drvr))
39 bphy_err(drvr, "Unsupported proto type %d\n",
40 drvr->bus_if->proto_type);
48 bphy_err(drvr, "Not all proto handlers have been installed\n");
55 drvr
59 brcmf_proto_detach(struct brcmf_pub *drvr) argument
[all...]
H A Dfwvid.h17 int (*alloc_fweh_info)(struct brcmf_pub *drvr);
26 int brcmf_fwvid_attach(struct brcmf_pub *drvr);
27 void brcmf_fwvid_detach(struct brcmf_pub *drvr);
28 const char *brcmf_fwvid_vendor_name(struct brcmf_pub *drvr);
32 const struct brcmf_fwvid_ops *vops = ifp->drvr->vops;
43 const struct brcmf_fwvid_ops *vops = ifp->drvr->vops;
51 static inline int brcmf_fwvid_alloc_fweh_info(struct brcmf_pub *drvr) argument
53 if (!drvr->vops)
56 return drvr->vops->alloc_fweh_info(drvr);
[all...]
H A Dmsgbuf.h32 void brcmf_msgbuf_delete_flowring(struct brcmf_pub *drvr, u16 flowid);
33 int brcmf_proto_msgbuf_attach(struct brcmf_pub *drvr);
34 void brcmf_proto_msgbuf_detach(struct brcmf_pub *drvr);
36 static inline int brcmf_proto_msgbuf_attach(struct brcmf_pub *drvr) argument
40 static inline void brcmf_proto_msgbuf_detach(struct brcmf_pub *drvr) {} argument
H A Dcore.c78 struct brcmf_if *brcmf_get_ifp(struct brcmf_pub *drvr, int ifidx) argument
84 bphy_err(drvr, "ifidx %d out of range\n", ifidx);
89 bsscfgidx = drvr->if2bss[ifidx];
91 ifp = drvr->iflist[bsscfgidx];
137 struct brcmf_pub *drvr = ifp->drvr; local
175 bphy_err(drvr, "Setting mcast_list failed, %d\n", err);
188 bphy_err(drvr, "Setting allmulti failed, %d\n", err);
196 bphy_info_once(drvr, "BRCMF_C_SET_PROMISC unsupported\n");
198 bphy_err(drvr, "Settin
209 struct brcmf_pub *drvr = ifp->drvr; local
293 struct brcmf_pub *drvr = ifp->drvr; local
478 brcmf_rx_hdrpull(struct brcmf_pub *drvr, struct sk_buff *skb, struct brcmf_if **ifp) argument
502 struct brcmf_pub *drvr = bus_if->drvr; local
527 struct brcmf_pub *drvr = bus_if->drvr; local
562 struct brcmf_pub *drvr = ifp->drvr; local
594 struct brcmf_pub *drvr = ifp->drvr; local
635 struct brcmf_pub *drvr = ifp->drvr; local
693 struct brcmf_pub *drvr = ifp->drvr; local
719 struct brcmf_pub *drvr = ifp->drvr; local
749 struct brcmf_pub *drvr = ifp->drvr; local
815 struct brcmf_pub *drvr = ifp->drvr; local
842 brcmf_add_if(struct brcmf_pub *drvr, s32 bsscfgidx, s32 ifidx, bool is_p2pdev, const char *name, u8 *mac_addr) argument
908 brcmf_del_if(struct brcmf_pub *drvr, s32 bsscfgidx, bool locked) argument
970 struct brcmf_pub *drvr = ifp->drvr; local
990 struct brcmf_pub *drvr = container_of(nb, struct brcmf_pub, local
1081 struct brcmf_pub *drvr = container_of(nb, struct brcmf_pub, local
1162 struct brcmf_pub *drvr = container_of(work, struct brcmf_pub, local
1171 struct brcmf_pub *drvr = file->private_data; local
1191 brcmf_bus_started(struct brcmf_pub *drvr, struct cfg80211_ops *ops) argument
1296 struct brcmf_pub *drvr = NULL; local
1324 struct brcmf_pub *drvr = bus_if->drvr; local
1379 struct brcmf_pub *drvr = bus_if->drvr; local
1389 struct brcmf_pub *drvr = bus_if->drvr; local
1409 struct brcmf_pub *drvr = bus_if->drvr; local
1423 struct brcmf_pub *drvr = bus_if->drvr; local
1466 struct brcmf_pub *drvr = bus_if->drvr; local
1493 struct brcmf_pub *drvr = ifp->drvr; local
1510 struct brcmf_pub *drvr = bus->drvr; local
[all...]
H A Dbcdc.c101 struct brcmf_fws_info *drvr_to_fws(struct brcmf_pub *drvr) argument
103 struct brcmf_bcdc *bcdc = drvr->proto->pd;
109 brcmf_proto_bcdc_msg(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf, argument
112 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd;
137 return brcmf_bus_txctl(drvr->bus_if, (unsigned char *)&bcdc->msg, len);
140 static int brcmf_proto_bcdc_cmplt(struct brcmf_pub *drvr, u32 id, u32 len) argument
143 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr->proto->pd;
148 ret = brcmf_bus_rxctl(drvr->bus_if, (unsigned char *)&bcdc->msg,
158 brcmf_proto_bcdc_query_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd, argument
161 struct brcmf_bcdc *bcdc = (struct brcmf_bcdc *)drvr
216 brcmf_proto_bcdc_set_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf, uint len, int *fwerr) argument
257 brcmf_proto_bcdc_hdrpush(struct brcmf_pub *drvr, int ifidx, u8 offset, struct sk_buff *pktbuf) argument
281 brcmf_proto_bcdc_hdrpull(struct brcmf_pub *drvr, bool do_fws, struct sk_buff *pktbuf, struct brcmf_if **ifp) argument
333 brcmf_proto_bcdc_tx_queue_data(struct brcmf_pub *drvr, int ifidx, struct sk_buff *skb) argument
346 brcmf_proto_bcdc_txdata(struct brcmf_pub *drvr, int ifidx, u8 offset, struct sk_buff *pktbuf) argument
356 struct brcmf_pub *drvr = bus_if->drvr; local
383 brcmf_proto_bcdc_configure_addr_mode(struct brcmf_pub *drvr, int ifidx, enum proto_addr_mode addr_mode) argument
389 brcmf_proto_bcdc_delete_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
395 brcmf_proto_bcdc_add_tdls_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
425 brcmf_proto_bcdc_init_done(struct brcmf_pub *drvr) argument
438 brcmf_proto_bcdc_debugfs_create(struct brcmf_pub *drvr) argument
443 brcmf_proto_bcdc_attach(struct brcmf_pub *drvr) argument
483 brcmf_proto_bcdc_detach(struct brcmf_pub *drvr) argument
[all...]
H A Dfwil.c99 struct brcmf_pub *drvr = ifp->drvr; local
102 if (drvr->bus_if->state != BRCMF_BUS_UP) {
103 bphy_err(drvr, "bus is down. we have nothing to do.\n");
110 err = brcmf_proto_set_dcmd(drvr, ifp->ifidx, cmd,
113 err = brcmf_proto_query_dcmd(drvr, ifp->ifidx, cmd,
134 mutex_lock(&ifp->drvr->proto_block);
141 mutex_unlock(&ifp->drvr->proto_block);
152 mutex_lock(&ifp->drvr->proto_block);
160 mutex_unlock(&ifp->drvr
191 struct brcmf_pub *drvr = ifp->drvr; local
220 struct brcmf_pub *drvr = ifp->drvr; local
297 struct brcmf_pub *drvr = ifp->drvr; local
327 struct brcmf_pub *drvr = ifp->drvr; local
378 struct brcmf_pub *drvr = ifp->drvr; local
407 struct brcmf_pub *drvr = ifp->drvr; local
[all...]
H A Dfeature.c69 u32 feats = bus_if->drvr->feat_flags;
70 u32 quirks = bus_if->drvr->chip_quirks;
196 ifp->drvr->feat_flags |= BIT(id);
217 ifp->drvr->feat_flags |= BIT(id);
229 struct brcmf_pub *drvr = ifp->drvr; local
236 bphy_err(drvr, "could not get firmware cap (%d)\n", err);
247 ifp->drvr->feat_flags |= BIT(id);
261 struct brcmf_pub *drvr = bus_if->drvr; local
288 brcmf_feat_attach(struct brcmf_pub *drvr) argument
369 brcmf_feat_debugfs_create(struct brcmf_pub *drvr) argument
[all...]
H A Ddebug.c45 struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr) argument
47 return drvr->wiphy->debugfsdir;
50 void brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn, argument
53 WARN(!drvr->wiphy->debugfsdir, "wiphy not (yet) registered\n");
54 debugfs_create_devm_seqfile(drvr->bus_if->dev, fn,
55 drvr->wiphy->debugfsdir, read_fn);
H A Dfweh.c96 static int brcmf_fweh_call_event_handler(struct brcmf_pub *drvr, argument
106 fweh = ifp->drvr->fweh;
112 bphy_err(drvr, "unhandled fwevt %d ignored\n", fwcode);
114 bphy_err(drvr, "no interface object\n");
122 * @drvr: driver information object.
126 static void brcmf_fweh_handle_if_event(struct brcmf_pub *drvr, argument
146 (drvr->fweh->p2pdev_setup_ongoing))));
152 bphy_err(drvr, "invalid interface index: %u\n", ifevent->ifidx);
156 ifp = drvr->iflist[ifevent->bsscfgidx];
161 ifp = brcmf_add_if(drvr, ifeven
255 struct brcmf_pub *drvr; local
338 brcmf_fweh_attach(struct brcmf_pub *drvr) argument
366 brcmf_fweh_detach(struct brcmf_pub *drvr) argument
390 brcmf_fweh_register(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code, brcmf_fweh_handler_t handler) argument
415 brcmf_fweh_unregister(struct brcmf_pub *drvr, enum brcmf_fweh_event_code code) argument
470 brcmf_fweh_process_event(struct brcmf_pub *drvr, struct brcmf_event *event_packet, u32 packet_len, gfp_t gfp) argument
[all...]
H A Dfwvid.c153 int brcmf_fwvid_attach(struct brcmf_pub *drvr) argument
155 enum brcmf_fwvendor fwvid = drvr->bus_if->fwvid;
162 dev_name(drvr->bus_if->dev));
170 drvr->vops = fwvid_list[fwvid].vops;
171 list_add(&drvr->bus_if->list, &fwvid_list[fwvid].drvr_list);
178 void brcmf_fwvid_detach(struct brcmf_pub *drvr) argument
180 enum brcmf_fwvendor fwvid = drvr->bus_if->fwvid;
186 dev_name(drvr->bus_if->dev));
190 if (drvr->vops) {
191 drvr
197 brcmf_fwvid_vendor_name(struct brcmf_pub *drvr) argument
[all...]
H A Dfwsignal.h32 struct brcmf_fws_info *brcmf_fws_attach(struct brcmf_pub *drvr);
34 void brcmf_fws_debugfs_create(struct brcmf_pub *drvr);
45 void brcmf_fws_bus_blocked(struct brcmf_pub *drvr, bool flow_blocked);
H A Ddebug.h54 #define bphy_err(drvr, fmt, ...) \
59 wiphy_err((drvr)->wiphy, "%s: " fmt, __func__, \
63 #define bphy_info_once(drvr, fmt, ...) \
64 wiphy_info_once((drvr)->wiphy, "%s: " fmt, __func__, \
121 struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr);
122 void brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn,
127 static inline struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr) argument
132 void brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn, argument
H A Dcommon.c82 struct brcmf_pub *drvr = ifp->drvr; local
99 bphy_err(drvr, "Set join_pref error (%d)\n", err);
124 struct brcmf_pub *drvr = ifp->drvr; local
163 bphy_err(drvr, "%s (%zu byte file) failed (%d)\n",
168 bphy_err(drvr, "get %s failed (%d)\n", statvar, err);
180 struct brcmf_pub *drvr = ifp->drvr; local
181 struct brcmf_bus *bus = drvr
203 struct brcmf_pub *drvr = ifp->drvr; local
251 struct brcmf_pub *drvr = ifp->drvr; local
268 struct brcmf_pub *drvr = ifp->drvr; local
[all...]
H A Dmsgbuf.c230 struct brcmf_pub *drvr; member in struct:brcmf_msgbuf
423 brcmf_msgbuf_release_array(msgbuf->drvr->bus_if->dev,
426 brcmf_msgbuf_release_array(msgbuf->drvr->bus_if->dev,
431 static int brcmf_msgbuf_tx_ioctl(struct brcmf_pub *drvr, int ifidx, argument
434 struct brcmf_msgbuf *msgbuf = (struct brcmf_msgbuf *)drvr->proto->pd;
445 bphy_err(drvr, "Failed to reserve space in commonring\n");
492 static int brcmf_msgbuf_query_dcmd(struct brcmf_pub *drvr, int ifidx, argument
495 struct brcmf_msgbuf *msgbuf = (struct brcmf_msgbuf *)drvr->proto->pd;
503 err = brcmf_msgbuf_tx_ioctl(drvr, ifidx, cmd, buf, len);
509 bphy_err(drvr, "Timeou
530 brcmf_msgbuf_set_dcmd(struct brcmf_pub *drvr, int ifidx, uint cmd, void *buf, uint len, int *fwerr) argument
537 brcmf_msgbuf_hdrpull(struct brcmf_pub *drvr, bool do_fws, struct sk_buff *skb, struct brcmf_if **ifp) argument
586 struct brcmf_pub *drvr = msgbuf->drvr; local
701 struct brcmf_pub *drvr = msgbuf->drvr; local
800 brcmf_msgbuf_tx_queue_data(struct brcmf_pub *drvr, int ifidx, struct sk_buff *skb) argument
829 brcmf_msgbuf_configure_addr_mode(struct brcmf_pub *drvr, int ifidx, enum proto_addr_mode addr_mode) argument
839 brcmf_msgbuf_delete_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
848 brcmf_msgbuf_add_tdls_peer(struct brcmf_pub *drvr, int ifidx, u8 peer[ETH_ALEN]) argument
905 struct brcmf_pub *drvr = msgbuf->drvr; local
1013 struct brcmf_pub *drvr = msgbuf->drvr; local
1105 struct brcmf_pub *drvr = msgbuf->drvr; local
1149 struct brcmf_pub *drvr = msgbuf->drvr; local
1208 struct brcmf_pub *drvr = msgbuf->drvr; local
1220 struct brcmf_pub *drvr = msgbuf->drvr; local
1236 struct brcmf_pub *drvr = msgbuf->drvr; local
1265 struct brcmf_pub *drvr = msgbuf->drvr; local
1290 struct brcmf_pub *drvr = msgbuf->drvr; local
1372 struct brcmf_pub *drvr = bus_if->drvr; local
1401 brcmf_msgbuf_delete_flowring(struct brcmf_pub *drvr, u16 flowid) argument
1472 struct brcmf_pub *drvr = bus_if->drvr; local
1522 brcmf_msgbuf_debugfs_create(struct brcmf_pub *drvr) argument
1527 brcmf_proto_msgbuf_attach(struct brcmf_pub *drvr) argument
1657 brcmf_proto_msgbuf_detach(struct brcmf_pub *drvr) argument
[all...]
H A Dcfg80211.c550 struct brcmf_pub *drvr = ifp->drvr; local
562 bphy_err(drvr, "wsec_key error (%d)\n", err);
578 brcmf_proto_configure_addr_mode(ifp->drvr, ifp->ifidx,
581 brcmf_proto_configure_addr_mode(ifp->drvr, ifp->ifidx,
585 static int brcmf_get_first_free_bsscfgidx(struct brcmf_pub *drvr) argument
593 if (!drvr->iflist[bsscfgidx])
602 u8 mac_idx = ifp->drvr->sta_mac_idx;
610 ifp->drvr->sta_mac_idx = mac_idx;
713 struct brcmf_pub *drvr local
825 struct brcmf_pub *drvr = cfg->pub; local
981 struct brcmf_pub *drvr = cfg->pub; local
1030 struct brcmf_pub *drvr = ifp->drvr; local
1169 struct brcmf_pub *drvr = cfg->pub; local
1251 struct brcmf_pub *drvr = cfg->pub; local
1331 struct brcmf_pub *drvr = cfg->pub; local
1427 struct brcmf_pub *drvr = cfg->pub; local
1515 struct brcmf_pub *drvr = cfg->pub; local
1583 struct brcmf_pub *drvr = ifp->drvr; local
1596 struct brcmf_pub *drvr = ifp->drvr; local
1610 struct brcmf_pub *drvr = ifp->drvr; local
1692 struct brcmf_pub *drvr = ifp->drvr; local
1729 struct brcmf_pub *drvr = cfg->pub; local
1770 struct brcmf_pub *drvr = cfg->pub; local
1942 struct brcmf_pub *drvr = ifp->drvr; local
1971 struct brcmf_pub *drvr = ifp->drvr; local
2011 struct brcmf_pub *drvr = ifp->drvr; local
2087 struct brcmf_pub *drvr = ifp->drvr; local
2234 struct brcmf_pub *drvr = ifp->drvr; local
2312 struct brcmf_pub *drvr = ifp->drvr; local
2362 struct brcmf_pub *drvr = ifp->drvr; local
2600 struct brcmf_pub *drvr = cfg->pub; local
2632 struct brcmf_pub *drvr = cfg->pub; local
2682 struct brcmf_pub *drvr = cfg->pub; local
2708 struct brcmf_pub *drvr = ifp->drvr; local
2782 struct brcmf_pub *drvr = cfg->pub; local
2908 struct brcmf_pub *drvr = cfg->pub; local
2974 struct brcmf_pub *drvr = ifp->drvr; local
3028 struct brcmf_pub *drvr = ifp->drvr; local
3066 struct brcmf_pub *drvr = ifp->drvr; local
3117 struct brcmf_pub *drvr = cfg->pub; local
3240 struct brcmf_pub *drvr = cfg->pub; local
3277 struct brcmf_pub *drvr = cfg->pub; local
3325 struct brcmf_pub *drvr = cfg->pub; local
3396 struct brcmf_pub *drvr = cfg->pub; local
3423 struct brcmf_pub *drvr = cfg->pub; local
3505 struct brcmf_pub *drvr = cfg->pub; local
3555 struct brcmf_pub *drvr = cfg->pub; local
3606 struct brcmf_pub *drvr = ifp->drvr; local
3843 struct brcmf_pub *drvr = ifp->drvr; local
3933 struct brcmf_pub *drvr = cfg->pub; local
4018 struct brcmf_pub *drvr = ifp->drvr; local
4068 struct brcmf_pub *drvr = cfg->pub; local
4361 struct brcmf_pub *drvr = cfg->pub; local
4406 struct brcmf_pub *drvr = cfg->pub; local
4472 struct brcmf_pub *drvr = ifp->drvr; local
4515 struct brcmf_pub *drvr = ifp->drvr; local
4829 struct brcmf_pub *drvr; local
5011 struct brcmf_pub *drvr = vif->ifp->drvr; local
5093 struct brcmf_pub *drvr = cfg->pub; local
5340 struct brcmf_pub *drvr = cfg->pub; local
5425 struct brcmf_pub *drvr = cfg->pub; local
5457 struct brcmf_pub *drvr = cfg->pub; local
5502 struct brcmf_pub *drvr = cfg->pub; local
5653 struct brcmf_pub *drvr = cfg->pub; local
5677 struct brcmf_pub *drvr = cfg->pub; local
5812 struct brcmf_pub *drvr = cfg->pub; local
5842 struct brcmf_pub *drvr = cfg->pub; local
5866 struct brcmf_pub *drvr = cfg->pub; local
6260 struct brcmf_pub *drvr = cfg->pub; local
6457 struct brcmf_pub *drvr = cfg->pub; local
6826 struct brcmf_pub *drvr = ifp->drvr; local
6878 struct brcmf_pub *drvr = ifp->drvr; local
6930 struct brcmf_pub *drvr = cfg->pub; local
7063 struct brcmf_pub *drvr = cfg->pub; local
7148 struct brcmf_pub *drvr = ifp->drvr; local
7259 struct brcmf_pub *drvr = cfg->pub; local
7541 struct brcmf_pub *drvr = cfg->pub; local
7570 struct brcmf_pub *drvr = ifp->drvr; local
7710 struct brcmf_pub *drvr = cfg->pub; local
7878 brmcf_use_iso3166_ccode_fallback(struct brcmf_pub *drvr) argument
7894 brcmf_translate_country_code(struct brcmf_pub *drvr, char alpha2[2], struct brcmf_fil_country_le *ccreq) argument
8178 struct brcmf_pub *drvr = cfg->pub; local
8242 brcmf_cfg80211_attach(struct brcmf_pub *drvr, struct cfg80211_ops *ops, bool p2pdev_forced) argument
[all...]
H A Dpno.c38 #define ifp_to_pno(_ifp) ((_ifp)->drvr->config->pno)
105 struct brcmf_pub *drvr = ifp->drvr; local
129 bphy_err(drvr, "failed to set pfnmem\n");
135 bphy_err(drvr, "failed to get pfnmem\n");
149 bphy_err(drvr, "pfn_set failed, err=%d\n", err);
157 struct brcmf_pub *drvr = ifp->drvr; local
192 bphy_err(drvr, "pfn_macaddr failed, err=%d\n", err);
200 struct brcmf_pub *drvr local
223 struct brcmf_pub *drvr = ifp->drvr; local
258 struct brcmf_pub *drvr = ifp->drvr; local
393 struct brcmf_pub *drvr = ifp->drvr; local
[all...]
H A Dfeature.h97 * @drvr: driver instance.
99 void brcmf_feat_attach(struct brcmf_pub *drvr);
104 * @drvr: driver instance.
106 void brcmf_feat_debugfs_create(struct brcmf_pub *drvr);
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bca/
H A Dcore.c19 ifp->drvr->feat_flags &= ~BIT(BRCMF_FEAT_SAE);
22 static int brcmf_bca_alloc_fweh_info(struct brcmf_pub *drvr) argument
32 drvr->fweh = fweh;
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/
H A Dcore.c19 struct brcmf_pub *drvr = ifp->drvr; local
25 bphy_err(drvr, "sae_password must be less than %d\n",
36 bphy_err(drvr, "failed to set SAE password in firmware (len=%u)\n",
42 static int brcmf_cyw_alloc_fweh_info(struct brcmf_pub *drvr) argument
52 drvr->fweh = fweh;
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Ddebug.c48 void brcms_debugfs_attach(struct brcms_pub *drvr) argument
50 drvr->dbgfs_dir = debugfs_create_dir(
51 dev_name(&drvr->wlc->hw->d11core->dev), root_folder);
54 void brcms_debugfs_detach(struct brcms_pub *drvr) argument
56 debugfs_remove_recursive(drvr->dbgfs_dir);
59 struct dentry *brcms_debugfs_get_devdir(struct brcms_pub *drvr) argument
61 return drvr->dbgfs_dir;
67 struct brcms_pub *drvr = s->private; local
68 struct brcms_hardware *hw = drvr->wlc->hw;
91 drvr
100 struct brcms_pub *drvr = s->private; local
171 struct brcms_pub *drvr; member in struct:brcms_debugfs_entry
190 brcms_debugfs_add_entry(struct brcms_pub *drvr, const char *fn, int (*read_fn)(struct seq_file *seq, void *data)) argument
207 brcms_debugfs_create_files(struct brcms_pub *drvr) argument
[all...]
H A Ddebug.h71 void brcms_debugfs_attach(struct brcms_pub *drvr);
72 void brcms_debugfs_detach(struct brcms_pub *drvr);
73 struct dentry *brcms_debugfs_get_devdir(struct brcms_pub *drvr);
74 void brcms_debugfs_create_files(struct brcms_pub *drvr);
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/wcc/
H A Dcore.c23 static int brcmf_wcc_alloc_fweh_info(struct brcmf_pub *drvr) argument
33 drvr->fweh = fweh;
/linux-master/include/linux/
H A Dntb_transport.h59 int ntb_transport_register_client(struct ntb_transport_client *drvr);
60 void ntb_transport_unregister_client(struct ntb_transport_client *drvr);

Completed in 339 milliseconds

12