summaryrefslogtreecommitdiff
path: root/hw/slavio_timer.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-04 20:29:03 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-04 20:29:03 +0000
commit389d4a259c723492a946d26986c7734700043c05 (patch)
treee2ae2a078cf4cc801d17203c1bd0a24f9da92278 /hw/slavio_timer.c
parent7e8c2b6ca8bed50375fb5bb3363d46588c526ef9 (diff)
downloadqemu-389d4a259c723492a946d26986c7734700043c05.tar.gz
Remove unneeded qemu_irq_lower (Robert Reif)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4015 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/slavio_timer.c')
-rw-r--r--hw/slavio_timer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/slavio_timer.c b/hw/slavio_timer.c
index f129a5f0b0..ff657f49e9 100644
--- a/hw/slavio_timer.c
+++ b/hw/slavio_timer.c
@@ -192,7 +192,6 @@ static void slavio_timer_mem_writel(void *opaque, target_phys_addr_t addr,
uint64_t count;
// set user counter MSW, reset counter
- qemu_irq_lower(s->irq);
s->limit = TIMER_MAX_COUNT64;
s->counthigh = val & (TIMER_MAX_COUNT64 >> 32);
s->reached = 0;
@@ -218,7 +217,6 @@ static void slavio_timer_mem_writel(void *opaque, target_phys_addr_t addr,
uint64_t count;
// set user counter LSW, reset counter
- qemu_irq_lower(s->irq);
s->limit = TIMER_MAX_COUNT64;
s->count = val & TIMER_MAX_COUNT64;
s->reached = 0;