projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c38f84
)
Fix typo in eTSEC Ethernet controller
author
Fabien Chouteau
<chouteau@adacore.com>
Wed, 2 Apr 2014 14:49:32 +0000
(16:49 +0200)
committer
Alexander Graf
<agraf@suse.de>
Mon, 16 Jun 2014 11:24:26 +0000
(13:24 +0200)
IRQ are lowered when ievent bit is cleared, so irq_pulse makes no sense
here...
Signed-off-by: Fabien Chouteau <chouteau@adacore.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/net/fsl_etsec/rings.c
patch
|
blob
|
history
diff --git
a/hw/net/fsl_etsec/rings.c
b/hw/net/fsl_etsec/rings.c
index e36cfbe76da070564e485eb62c3fc15bcb4cdb8f..d4a494f6a3c92631ef2ae8754a562787d2622c94 100644
(file)
--- a/
hw/net/fsl_etsec/rings.c
+++ b/
hw/net/fsl_etsec/rings.c
@@
-159,7
+159,7
@@
static void ievent_set(eTSEC *etsec,
if ((flags & IEVENT_RXB && etsec->regs[IMASK].value & IMASK_RXBEN)
|| (flags & IEVENT_RXF && etsec->regs[IMASK].value & IMASK_RXFEN)) {
- qemu_irq_
pul
se(etsec->rx_irq);
+ qemu_irq_
rai
se(etsec->rx_irq);
RING_DEBUG("%s Raise Rx IRQ\n", __func__);
}
}