summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-hw-zaurus.c
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/patch-hw-zaurus.c')
-rw-r--r--emulators/qemu-devel/files/patch-hw-zaurus.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/emulators/qemu-devel/files/patch-hw-zaurus.c b/emulators/qemu-devel/files/patch-hw-zaurus.c
deleted file mode 100644
index 59b2415a458c..000000000000
--- a/emulators/qemu-devel/files/patch-hw-zaurus.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/hw/zaurus.c
-+++ b/hw/zaurus.c
-@@ -70,6 +70,10 @@ static uint32_t scoop_readb(void *opaque
- {
- ScoopInfo *s = (ScoopInfo *) opaque;
-
-+ // XXX Workaround for base address (0x08800040 in this case)
-+ // rounded down to start of page
-+ addr &= 0x3f;
-+
- switch (addr) {
- case SCOOP_MCR:
- return s->mcr;
-@@ -104,6 +108,10 @@ static void scoop_writeb(void *opaque, t
- ScoopInfo *s = (ScoopInfo *) opaque;
- value &= 0xffff;
-
-+ // XXX Workaround for base address (0x08800040 in this case)
-+ // rounded down to start of page
-+ addr &= 0x3f;
-+
- switch (addr) {
- case SCOOP_MCR:
- s->mcr = value;