Lines Matching refs:ts_config
940 ts_host_timestamping_config_t ts_config; in dhd_timesync_send_host_timestamping_config() local
947 bzero(&ts_config, sizeof(ts_config)); in dhd_timesync_send_host_timestamping_config()
949 ts_config.xtlv.id = BCMMSGBUF_HOST_TIMESTAMPING_CONFIG_TAG; in dhd_timesync_send_host_timestamping_config()
951 ts_config.xtlv.id = BCMMSGBUF_HOST_TS_BADTAG; in dhd_timesync_send_host_timestamping_config()
953 ts_config.xtlv.len = sizeof(ts_config) - sizeof(_bcm_xtlv_t); in dhd_timesync_send_host_timestamping_config()
954 ts_config.period_ms = ts->h_tsconf_period; in dhd_timesync_send_host_timestamping_config()
956 if (ts_config.period_ms) { in dhd_timesync_send_host_timestamping_config()
957 ts_config.flags |= FLAG_HOST_RESET; in dhd_timesync_send_host_timestamping_config()
958 ts_config.reset_cnt = ts->host_reset_cnt + 1; in dhd_timesync_send_host_timestamping_config()
962 ts_config.flags |= FLAG_CONFIG_NODROP; in dhd_timesync_send_host_timestamping_config()
963 ts_config.post_delay = TS_NODROP_CONFIG_TO; in dhd_timesync_send_host_timestamping_config()
965 ts_config.post_delay = TS_DROP_CONFIG_TO; in dhd_timesync_send_host_timestamping_config()
969 ts_config.xtlv.id, ts_config.xtlv.len, ts_config.period_ms, in dhd_timesync_send_host_timestamping_config()
971 ret_val = dhd_prot_send_host_timestamp(ts->dhdp, (uchar *)&ts_config, sizeof(ts_config), in dhd_timesync_send_host_timestamping_config()
978 if (ts_config.period_ms) { in dhd_timesync_send_host_timestamping_config()