• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/uwb/i1480/i1480u-wlp/

Lines Matching defs:options

17 ssize_t uwb_phy_rate_show(const struct wlp_options *options, char *buf)
20 wlp_tx_hdr_phy_rate(&options->def_tx_hdr));
25 ssize_t uwb_phy_rate_store(struct wlp_options *options,
39 wlp_tx_hdr_set_phy_rate(&options->def_tx_hdr, rate);
47 ssize_t uwb_rts_cts_show(const struct wlp_options *options, char *buf)
50 wlp_tx_hdr_rts_cts(&options->def_tx_hdr));
55 ssize_t uwb_rts_cts_store(struct wlp_options *options,
67 wlp_tx_hdr_set_rts_cts(&options->def_tx_hdr, !!value);
75 ssize_t uwb_ack_policy_show(const struct wlp_options *options, char *buf)
78 wlp_tx_hdr_ack_policy(&options->def_tx_hdr));
83 ssize_t uwb_ack_policy_store(struct wlp_options *options,
94 wlp_tx_hdr_set_ack_policy(&options->def_tx_hdr, value);
108 ssize_t uwb_pca_base_priority_show(const struct wlp_options *options,
112 options->pca_base_priority);
123 ssize_t uwb_pca_base_priority_store(struct wlp_options *options,
137 options->pca_base_priority = pca_base_priority;
139 if (result >= 0 && (wlp_tx_hdr_delivery_id_type(&options->def_tx_hdr) & WLP_DRP) == 0)
140 wlp_tx_hdr_set_delivery_id_type(&options->def_tx_hdr, options->pca_base_priority);
239 i1480u_SHOW(uwb_phy_rate, uwb_phy_rate_show, options);
240 i1480u_STORE(uwb_phy_rate, uwb_phy_rate_store, options);
243 i1480u_SHOW(uwb_rts_cts, uwb_rts_cts_show, options);
244 i1480u_STORE(uwb_rts_cts, uwb_rts_cts_store, options);
247 i1480u_SHOW(uwb_ack_policy, uwb_ack_policy_show, options);
248 i1480u_STORE(uwb_ack_policy, uwb_ack_policy_store, options);
251 i1480u_SHOW(uwb_pca_base_priority, uwb_pca_base_priority_show, options);
252 i1480u_STORE(uwb_pca_base_priority, uwb_pca_base_priority_store, options);