Home
last modified time | relevance | path

Searched refs:minfo (Results 1 – 25 of 113) sorted by relevance

12345

/OK3568_Linux_fs/kernel/drivers/video/fbdev/matrox/
H A Dmatroxfb_DAC1064.c37 static void DAC1064_calcclock(const struct matrox_fb_info *minfo, in DAC1064_calcclock() argument
49 fvco = PLL_calcclock(minfo, freq, fmax, in, feed, &p); in DAC1064_calcclock()
88 static void DAC1064_setpclk(struct matrox_fb_info *minfo, unsigned long fout) in DAC1064_setpclk() argument
94 DAC1064_calcclock(minfo, fout, minfo->max_pixel_clock, &m, &n, &p); in DAC1064_setpclk()
95 minfo->hw.DACclk[0] = m; in DAC1064_setpclk()
96 minfo->hw.DACclk[1] = n; in DAC1064_setpclk()
97 minfo->hw.DACclk[2] = p; in DAC1064_setpclk()
100 static void DAC1064_setmclk(struct matrox_fb_info *minfo, int oscinfo, in DAC1064_setmclk() argument
104 struct matrox_hw_state *hw = &minfo->hw; in DAC1064_setmclk()
108 if (minfo->devflags.noinit) { in DAC1064_setmclk()
[all …]
H A Dmatroxfb_base.c125 static void matroxfb_unregister_device(struct matrox_fb_info* minfo);
156 static void update_crtc2(struct matrox_fb_info *minfo, unsigned int pos) in update_crtc2() argument
158 struct matroxfb_dh_fb_info *info = minfo->crtc2.info; in update_crtc2()
161 if (info && (info->fbcon.var.bits_per_pixel == minfo->fbcon.var.bits_per_pixel) in update_crtc2()
162 && (info->fbcon.var.xres_virtual == minfo->fbcon.var.xres_virtual) in update_crtc2()
163 && (info->fbcon.var.green.length == minfo->fbcon.var.green.length) in update_crtc2()
165 switch (minfo->fbcon.var.bits_per_pixel) { in update_crtc2()
171 mga_outl(0x3C28, pos + minfo->fbcon.var.xres_virtual * minfo->fbcon.var.bits_per_pixel / 8); in update_crtc2()
180 static void matroxfb_crtc1_panpos(struct matrox_fb_info *minfo) in matroxfb_crtc1_panpos() argument
182 if (minfo->crtc1.panpos >= 0) { in matroxfb_crtc1_panpos()
[all …]
H A Dmatroxfb_Ti3026.c283 static int Ti3026_calcclock(const struct matrox_fb_info *minfo, in Ti3026_calcclock() argument
292 fvco = PLL_calcclock(minfo, freq, fmax, &lin, &lfeed, &lpost); in Ti3026_calcclock()
299 static int Ti3026_setpclk(struct matrox_fb_info *minfo, int clk) in Ti3026_setpclk() argument
303 struct matrox_hw_state *hw = &minfo->hw; in Ti3026_setpclk()
307 f_pll = Ti3026_calcclock(minfo, clk, minfo->max_pixel_clock, &pixin, &pixfeed, &pixpost); in Ti3026_setpclk()
317 Bpp = minfo->curr.final_bppShift; in Ti3026_setpclk()
319 if (minfo->fbcon.var.bits_per_pixel == 24) { in Ti3026_setpclk()
338 if (minfo->fbcon.var.bits_per_pixel == 24) { in Ti3026_setpclk()
341 if (minfo->accel.ramdac_rev > 0x20) { in Ti3026_setpclk()
342 if (isInterleave(minfo)) in Ti3026_setpclk()
[all …]
H A Dg450_pll.c28 static unsigned int g450_mnp2vco(const struct matrox_fb_info *minfo, in g450_mnp2vco() argument
35 return (minfo->features.pll.ref_freq * n + (m >> 1)) / m; in g450_mnp2vco()
38 unsigned int g450_mnp2f(const struct matrox_fb_info *minfo, unsigned int mnp) in g450_mnp2f() argument
40 return g450_vco2f(mnp, g450_mnp2vco(minfo, mnp)); in g450_mnp2f()
55 static unsigned int g450_nextpll(const struct matrox_fb_info *minfo, in g450_nextpll() argument
99 n = ((tvco * (m+1) + minfo->features.pll.ref_freq) / (minfo->features.pll.ref_freq * 2)) - 2; in g450_nextpll()
104 static unsigned int g450_firstpll(const struct matrox_fb_info *minfo, in g450_firstpll() argument
133 return g450_nextpll(minfo, pi, vco, 0xFF0000 | p); in g450_firstpll()
136 static inline unsigned int g450_setpll(const struct matrox_fb_info *minfo, in g450_setpll() argument
141 matroxfb_DAC_out(minfo, M1064_XPIXPLLAM, mnp >> 16); in g450_setpll()
[all …]
H A Dmatroxfb_g450.c84 static inline int *get_ctrl_ptr(struct matrox_fb_info *minfo, unsigned int idx) in get_ctrl_ptr() argument
86 return (int*)((char*)minfo + g450_controls[idx].control); in get_ctrl_ptr()
89 static void tvo_fill_defaults(struct matrox_fb_info *minfo) in tvo_fill_defaults() argument
94 *get_ctrl_ptr(minfo, i) = g450_controls[i].desc.default_value; in tvo_fill_defaults()
98 static int cve2_get_reg(struct matrox_fb_info *minfo, int reg) in cve2_get_reg() argument
104 matroxfb_DAC_out(minfo, 0x87, reg); in cve2_get_reg()
105 val = matroxfb_DAC_in(minfo, 0x88); in cve2_get_reg()
110 static void cve2_set_reg(struct matrox_fb_info *minfo, int reg, int val) in cve2_set_reg() argument
115 matroxfb_DAC_out(minfo, 0x87, reg); in cve2_set_reg()
116 matroxfb_DAC_out(minfo, 0x88, val); in cve2_set_reg()
[all …]
H A Dmatroxfb_misc.c93 void matroxfb_DAC_out(const struct matrox_fb_info *minfo, int reg, int val) in matroxfb_DAC_out() argument
100 int matroxfb_DAC_in(const struct matrox_fb_info *minfo, int reg) in matroxfb_DAC_in() argument
190 int matroxfb_vgaHWinit(struct matrox_fb_info *minfo, struct my_timming *m) in matroxfb_vgaHWinit() argument
197 struct matrox_hw_state * const hw = &minfo->hw; in matroxfb_vgaHWinit()
247 divider = minfo->curr.final_bppShift; in matroxfb_vgaHWinit()
277 wd = minfo->fbcon.var.xres_virtual * minfo->curr.final_bppShift / 64; in matroxfb_vgaHWinit()
294 if (minfo->outputs[1].src == MATROXFB_SRC_CRTC1) in matroxfb_vgaHWinit()
338 void matroxfb_vgaHWrestore(struct matrox_fb_info *minfo) in matroxfb_vgaHWrestore() argument
341 struct matrox_hw_state * const hw = &minfo->hw; in matroxfb_vgaHWrestore()
530 static int parse_pins1(struct matrox_fb_info *minfo, in parse_pins1() argument
[all …]
H A Dmatroxfb_accel.c111 void matrox_cfbX_init(struct matrox_fb_info *minfo) in matrox_cfbX_init() argument
120 mpitch = minfo->fbcon.var.xres_virtual; in matrox_cfbX_init()
122 minfo->fbops.fb_copyarea = cfb_copyarea; in matrox_cfbX_init()
123 minfo->fbops.fb_fillrect = cfb_fillrect; in matrox_cfbX_init()
124 minfo->fbops.fb_imageblit = cfb_imageblit; in matrox_cfbX_init()
125 minfo->fbops.fb_cursor = NULL; in matrox_cfbX_init()
127 accel = (minfo->fbcon.var.accel_flags & FB_ACCELF_TEXT) == FB_ACCELF_TEXT; in matrox_cfbX_init()
129 switch (minfo->fbcon.var.bits_per_pixel) { in matrox_cfbX_init()
133 matrox_cfb4_pal(minfo->cmap); in matrox_cfbX_init()
135 minfo->fbops.fb_copyarea = matroxfb_cfb4_copyarea; in matrox_cfbX_init()
[all …]
H A Dmatroxfb_crtc2.c70 struct matrox_fb_info *minfo = m2info->primary_dev; in matroxfb_dh_restore() local
86 if (minfo->outputs[1].src == MATROXFB_SRC_CRTC2) { in matroxfb_dh_restore()
87 if (minfo->devflags.g450dac) { in matroxfb_dh_restore()
90 if (minfo->outputs[1].mode != MATROXFB_OUTPUT_MODE_MONITOR) { in matroxfb_dh_restore()
98 } else if (minfo->outputs[0].src == MATROXFB_SRC_CRTC2) { in matroxfb_dh_restore()
102 if (minfo->outputs[0].src == MATROXFB_SRC_CRTC2) { in matroxfb_dh_restore()
151 minfo->hw.crtc2.ctl = tmp; in matroxfb_dh_restore()
162 struct matrox_fb_info *minfo = m2info->primary_dev; in matroxfb_dh_disable() local
165 minfo->hw.crtc2.ctl = 0x00000004; in matroxfb_dh_disable()
173 struct matrox_fb_info *minfo = m2info->primary_dev; in matroxfb_dh_pan_var() local
[all …]
H A Di2c-matroxfb.c41 static int matroxfb_read_gpio(struct matrox_fb_info* minfo) { in matroxfb_read_gpio() argument
46 v = matroxfb_DAC_in(minfo, DAC_XGENIODATA); in matroxfb_read_gpio()
51 static void matroxfb_set_gpio(struct matrox_fb_info* minfo, int mask, int val) { in matroxfb_set_gpio() argument
56 v = (matroxfb_DAC_in(minfo, DAC_XGENIOCTRL) & mask) | val; in matroxfb_set_gpio()
57 matroxfb_DAC_out(minfo, DAC_XGENIOCTRL, v); in matroxfb_set_gpio()
59 matroxfb_DAC_out(minfo, DAC_XGENIODATA, 0x00); in matroxfb_set_gpio()
64 static inline void matroxfb_i2c_set(struct matrox_fb_info* minfo, int mask, int state) { in matroxfb_i2c_set() argument
69 matroxfb_set_gpio(minfo, ~mask, state); in matroxfb_i2c_set()
74 matroxfb_i2c_set(b->minfo, b->mask.data, state); in matroxfb_gpio_setsda()
79 matroxfb_i2c_set(b->minfo, b->mask.clock, state); in matroxfb_gpio_setscl()
[all …]
H A Dmatroxfb_base.h500 int (*preinit)(struct matrox_fb_info *minfo);
501 void (*reset)(struct matrox_fb_info *minfo);
502 int (*init)(struct matrox_fb_info *minfo, struct my_timming*);
503 void (*restore)(struct matrox_fb_info *minfo);
666 #define mga_inb(addr) mga_readb(minfo->mmio.vbase, (addr))
667 #define mga_inl(addr) mga_readl(minfo->mmio.vbase, (addr))
668 #define mga_outb(addr,val) mga_writeb(minfo->mmio.vbase, (addr), (val))
669 #define mga_outw(addr,val) mga_writew(minfo->mmio.vbase, (addr), (val))
670 #define mga_outl(addr,val) mga_writel(minfo->mmio.vbase, (addr), (val))
689 #define matroxfb_DAC_lock() spin_lock(&minfo->lock.DAC)
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/
H A Dphl_mcc.c162 void _mcc_dump_mcc_info(struct phl_mcc_info *minfo) in _mcc_dump_mcc_info() argument
165 _mcc_dump_mode(&minfo->mcc_mode); in _mcc_dump_mcc_info()
166 _mcc_dump_state(&minfo->state); in _mcc_dump_mcc_info()
167 _mcc_dump_bt_ino(&minfo->bt_info); in _mcc_dump_mcc_info()
168 _mcc_dump_en_info(&minfo->en_info); in _mcc_dump_mcc_info()
172 void _mcc_set_state(struct phl_mcc_info *minfo, enum rtw_phl_mcc_state state) in _mcc_set_state() argument
175 minfo->state, state); in _mcc_set_state()
176 minfo->state = state; in _mcc_set_state()
177 _mcc_dump_state(&minfo->state); in _mcc_set_state()
199 _mcc_get_mrole_by_wrole(struct phl_mcc_info *minfo, in _mcc_get_mrole_by_wrole() argument
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/
H A Dphl_mcc.c162 void _mcc_dump_mcc_info(struct phl_mcc_info *minfo) in _mcc_dump_mcc_info() argument
165 _mcc_dump_mode(&minfo->mcc_mode); in _mcc_dump_mcc_info()
166 _mcc_dump_state(&minfo->state); in _mcc_dump_mcc_info()
167 _mcc_dump_bt_ino(&minfo->bt_info); in _mcc_dump_mcc_info()
168 _mcc_dump_en_info(&minfo->en_info); in _mcc_dump_mcc_info()
172 void _mcc_set_state(struct phl_mcc_info *minfo, enum rtw_phl_mcc_state state) in _mcc_set_state() argument
175 minfo->state, state); in _mcc_set_state()
176 minfo->state = state; in _mcc_set_state()
177 _mcc_dump_state(&minfo->state); in _mcc_set_state()
199 _mcc_get_mrole_by_wrole(struct phl_mcc_info *minfo, in _mcc_get_mrole_by_wrole() argument
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/
H A Dxt_multiport.c28 ports_match_v1(const struct xt_multiport_v1 *minfo, in ports_match_v1() argument
34 for (i = 0; i < minfo->count; i++) { in ports_match_v1()
35 s = minfo->ports[i]; in ports_match_v1()
37 if (minfo->pflags[i]) { in ports_match_v1()
39 e = minfo->ports[++i]; in ports_match_v1()
42 switch (minfo->flags) { in ports_match_v1()
45 return true ^ minfo->invert; in ports_match_v1()
49 return true ^ minfo->invert; in ports_match_v1()
54 return true ^ minfo->invert; in ports_match_v1()
63 switch (minfo->flags) { in ports_match_v1()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-webadmin/webmin/files/
H A Dmount-excludefs.patch19 @minfo = @$m;
20 $p = &simplify_mount_path($minfo[0], $minfo[2]);
21 next if ($ignore{$minfo[2]});
22 + next if (grep {$_ eq $minfo[2]} @excludefs);
23 @mmodes = &mount_modes($minfo[2], $minfo[0], $minfo[1]);
24 $canedit = $can_edit{$minfo[2]} && !$mmodes[4] &&
25 &can_edit_fs(@minfo);
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/core/mesh/
H A Drtw_mesh.c447 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
448 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
494 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
495 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
503 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
504 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
511 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
512 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
519 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
520 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/mesh/
H A Drtw_mesh.c447 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
448 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
494 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
495 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
503 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
504 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
511 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
512 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
519 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
520 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/core/mesh/
H A Drtw_mesh.c447 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
448 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
494 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
495 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
503 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
504 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
511 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
512 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
519 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
520 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/mesh/
H A Drtw_mesh.c446 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
447 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
493 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
494 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
502 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
503 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
510 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
511 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
518 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
519 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/mesh/
H A Drtw_mesh.c481 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
482 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
528 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
529 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
537 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
538 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
545 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
546 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
553 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
554 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/mesh/
H A Drtw_mesh.c482 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
483 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
529 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
530 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
538 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
539 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
546 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
547 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
554 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
555 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/mesh/
H A Drtw_mesh.c482 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
483 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
529 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
530 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
538 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
539 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
546 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
547 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
554 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
555 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/mesh/
H A Drtw_mesh.c482 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
483 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
529 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
530 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
538 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
539 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
546 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
547 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
554 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
555 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/mesh/
H A Drtw_mesh.c482 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
483 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
529 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
530 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
538 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
539 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
546 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
547 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
554 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
555 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/mesh/
H A Drtw_mesh.c483 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
484 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
530 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
531 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
539 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
540 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
547 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
548 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
555 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
556 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/mesh/
H A Drtw_mesh.c483 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_acnode_rsvd_chk() local
484 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_acnode_rsvd_chk()
530 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_add() local
531 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_add()
539 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_del() local
540 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_del()
547 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_search() local
548 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_search()
555 struct rtw_mesh_info *minfo = &adapter->mesh_info; in rtw_mesh_peer_blacklist_flush() local
556 struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl; in rtw_mesh_peer_blacklist_flush()
[all …]

12345