diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-02 17:47:02 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-02 17:47:02 +0000 |
commit | e64d7d595f9454d29de7110e3ec6591105c8e467 (patch) | |
tree | 26eaa11fc8ea8b8817b0e6e99fabaa8af196973a /hw/slavio_timer.c | |
parent | 0e8f096751f279a8de01d9c66c87911ec431fa4c (diff) | |
download | qemu-e64d7d595f9454d29de7110e3ec6591105c8e467.tar.gz qemu-e64d7d595f9454d29de7110e3ec6591105c8e467.tar.bz2 qemu-e64d7d595f9454d29de7110e3ec6591105c8e467.zip |
Remove address masking
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5853 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/slavio_timer.c')
-rw-r--r-- | hw/slavio_timer.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/slavio_timer.c b/hw/slavio_timer.c index f091fbe5f9..01cb1cf6a6 100644 --- a/hw/slavio_timer.c +++ b/hw/slavio_timer.c @@ -66,7 +66,6 @@ typedef struct SLAVIO_TIMERState { uint32_t slave_mode; } SLAVIO_TIMERState; -#define TIMER_MAXADDR 0x1f #define SYS_TIMER_SIZE 0x14 #define CPU_TIMER_SIZE 0x10 @@ -132,7 +131,7 @@ static uint32_t slavio_timer_mem_readl(void *opaque, target_phys_addr_t addr) SLAVIO_TIMERState *s = opaque; uint32_t saddr, ret; - saddr = (addr & TIMER_MAXADDR) >> 2; + saddr = addr >> 2; switch (saddr) { case TIMER_LIMIT: // read limit (system counter mode) or read most signifying @@ -185,7 +184,7 @@ static void slavio_timer_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t saddr; DPRINTF("write " TARGET_FMT_plx " %08x\n", addr, val); - saddr = (addr & TIMER_MAXADDR) >> 2; + saddr = addr >> 2; switch (saddr) { case TIMER_LIMIT: if (slavio_timer_is_user(s)) { |