Home | History | Annotate | Download | only in timestamping

Lines Matching refs:TX_TYPE

46 #define TX_TYPE(name) [HWTSTAMP_TX_ ## name] = #name
47 TX_TYPE(OFF),
48 TX_TYPE(ON),
49 TX_TYPE(ONESTEP_SYNC)
50 #undef TX_TYPE
77 fputs("Usage: hwtstamp_config if_name [tx_type rx_filter]\n"
78 "tx_type is any of (case-insensitive):\n",
99 config.tx_type = lookup_value(tx_types, N_TX_TYPES, argv[2]);
101 if (config.tx_type < 0 || config.rx_filter < 0) {
122 name = lookup_name(tx_types, N_TX_TYPES, config.tx_type);
124 printf("tx_type = %s\n", name);
126 printf("tx_type = %d\n", config.tx_type);