forked from M-Labs/artiq-zynq
fix compiling error when cfg has has_rtio_moninj
This commit is contained in:
parent
0e6309b95e
commit
c61017fbe6
|
@ -223,8 +223,8 @@ fn process_aux_packet(
|
||||||
|
|
||||||
drtioaux::Packet::MonitorRequest {
|
drtioaux::Packet::MonitorRequest {
|
||||||
destination: _destination,
|
destination: _destination,
|
||||||
channel: _channel,
|
channel,
|
||||||
probe: _probe,
|
probe,
|
||||||
} => {
|
} => {
|
||||||
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
||||||
let value;
|
let value;
|
||||||
|
@ -244,9 +244,9 @@ fn process_aux_packet(
|
||||||
}
|
}
|
||||||
drtioaux::Packet::InjectionRequest {
|
drtioaux::Packet::InjectionRequest {
|
||||||
destination: _destination,
|
destination: _destination,
|
||||||
channel: _channel,
|
channel,
|
||||||
overrd: _overrd,
|
overrd,
|
||||||
value: _value,
|
value,
|
||||||
} => {
|
} => {
|
||||||
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
||||||
#[cfg(has_rtio_moninj)]
|
#[cfg(has_rtio_moninj)]
|
||||||
|
@ -259,8 +259,8 @@ fn process_aux_packet(
|
||||||
}
|
}
|
||||||
drtioaux::Packet::InjectionStatusRequest {
|
drtioaux::Packet::InjectionStatusRequest {
|
||||||
destination: _destination,
|
destination: _destination,
|
||||||
channel: _channel,
|
channel,
|
||||||
overrd: _overrd,
|
overrd,
|
||||||
} => {
|
} => {
|
||||||
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
forward!(_routing_table, _destination, *_rank, _repeaters, &packet, timer);
|
||||||
let value;
|
let value;
|
||||||
|
|
Loading…
Reference in New Issue