Commit b20a0083a12f1a9d2dde1b15ac7140268115283c

Authored by Edgar E. Iglesias
1 parent 42f1ced2

xilinx-eth: Remove debug print.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Showing 1 changed file with 0 additions and 1 deletions
hw/xilinx_ethlite.c
@@ -165,7 +165,6 @@ static int eth_can_rx(VLANClientState *vc) @@ -165,7 +165,6 @@ static int eth_can_rx(VLANClientState *vc)
165 struct xlx_ethlite *s = vc->opaque; 165 struct xlx_ethlite *s = vc->opaque;
166 int r; 166 int r;
167 r = !(s->regs[R_RX_CTRL0] & CTRL_S); 167 r = !(s->regs[R_RX_CTRL0] & CTRL_S);
168 - qemu_log("%s %d\n", __func__, r);  
169 return r; 168 return r;
170 } 169 }
171 170