Lines Matching refs:mib_buf
850 priv->mib_buf.type = MIB_MAC_MGMT; in at76_set_pm_mode()
851 priv->mib_buf.size = 1; in at76_set_pm_mode()
852 priv->mib_buf.index = offsetof(struct mib_mac_mgmt, power_mgmt_mode); in at76_set_pm_mode()
853 priv->mib_buf.data.byte = priv->pm_mode; in at76_set_pm_mode()
855 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_pm_mode()
867 priv->mib_buf.type = MIB_LOCAL; in at76_set_preamble()
868 priv->mib_buf.size = 1; in at76_set_preamble()
869 priv->mib_buf.index = offsetof(struct mib_local, preamble_type); in at76_set_preamble()
870 priv->mib_buf.data.byte = type; in at76_set_preamble()
872 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_preamble()
884 priv->mib_buf.type = MIB_MAC; in at76_set_frag()
885 priv->mib_buf.size = 2; in at76_set_frag()
886 priv->mib_buf.index = offsetof(struct mib_mac, frag_threshold); in at76_set_frag()
887 priv->mib_buf.data.word = cpu_to_le16(size); in at76_set_frag()
889 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_frag()
901 priv->mib_buf.type = MIB_MAC; in at76_set_rts()
902 priv->mib_buf.size = 2; in at76_set_rts()
903 priv->mib_buf.index = offsetof(struct mib_mac, rts_threshold); in at76_set_rts()
904 priv->mib_buf.data.word = cpu_to_le16(size); in at76_set_rts()
906 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_rts()
917 priv->mib_buf.type = MIB_LOCAL; in at76_set_autorate_fallback()
918 priv->mib_buf.size = 1; in at76_set_autorate_fallback()
919 priv->mib_buf.index = offsetof(struct mib_local, txautorate_fallback); in at76_set_autorate_fallback()
920 priv->mib_buf.data.byte = onoff; in at76_set_autorate_fallback()
922 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_autorate_fallback()
1477 priv->mib_buf.type = MIB_LOCAL; in at76_work_set_promisc()
1478 priv->mib_buf.size = 1; in at76_work_set_promisc()
1479 priv->mib_buf.index = offsetof(struct mib_local, promiscuous_mode); in at76_work_set_promisc()
1480 priv->mib_buf.data.byte = priv->promisc ? 1 : 0; in at76_work_set_promisc()
1482 ret = at76_set_mib(priv, &priv->mib_buf); in at76_work_set_promisc()
2096 struct mib_mac_wep *mib_data = &priv->mib_buf.data.wep_mib; in at76_set_wep()
2098 priv->mib_buf.type = MIB_MAC_WEP; in at76_set_wep()
2099 priv->mib_buf.size = sizeof(struct mib_mac_wep); in at76_set_wep()
2100 priv->mib_buf.index = 0; in at76_set_wep()
2122 ret = at76_set_mib(priv, &priv->mib_buf); in at76_set_wep()