Home | History | Annotate | Download | only in timestamping

Lines Matching defs:config

89 	struct hwtstamp_config config;
99 config.flags = 0;
100 config.tx_type = lookup_value(tx_types, N_TX_TYPES, argv[2]);
101 config.rx_filter = lookup_value(rx_filters, N_RX_FILTERS, argv[3]);
102 if (config.tx_type < 0 || config.rx_filter < 0) {
115 ifr.ifr_data = (caddr_t)&config;
122 printf("flags = %#x\n", config.flags);
123 name = lookup_name(tx_types, N_TX_TYPES, config.tx_type);
127 printf("tx_type = %d\n", config.tx_type);
128 name = lookup_name(rx_filters, N_RX_FILTERS, config.rx_filter);
132 printf("rx_filter = %d\n", config.rx_filter);