summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-06-03 05:08:24 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-06-03 05:08:24 +0000
commit191320cd0f39a1dd831273f6ad57602d1b2e6cf9 (patch)
treeceedf028763a7855bf1b2caeb11765e7c6dd79af /firmware/export
parent606d9d0c83f8396fa418fa16a23da68aa2e4d784 (diff)
downloadrockbox-191320cd0f39a1dd831273f6ad57602d1b2e6cf9.tar.gz
rockbox-191320cd0f39a1dd831273f6ad57602d1b2e6cf9.zip
Rename CPU/COP_INT_CLR to CPU/COP_INT_DIS since it's really a 'write one to disable' register and hasn't anything to do with acknowledging interrupts-- that's handled at the module level.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17683 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/pp5002.h4
-rw-r--r--firmware/export/pp5020.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/firmware/export/pp5002.h b/firmware/export/pp5002.h
index bbd7003c63..03bab42fb5 100644
--- a/firmware/export/pp5002.h
+++ b/firmware/export/pp5002.h
@@ -105,12 +105,12 @@
105 105
106#define CPU_INT_EN_STAT (*(volatile unsigned long *)(0xcf001020)) 106#define CPU_INT_EN_STAT (*(volatile unsigned long *)(0xcf001020))
107#define CPU_INT_EN (*(volatile unsigned long *)(0xcf001024)) 107#define CPU_INT_EN (*(volatile unsigned long *)(0xcf001024))
108#define CPU_INT_CLR (*(volatile unsigned long *)(0xcf001028)) 108#define CPU_INT_DIS (*(volatile unsigned long *)(0xcf001028))
109#define CPU_INT_PRIORITY (*(volatile unsigned long *)(0xcf00102c)) 109#define CPU_INT_PRIORITY (*(volatile unsigned long *)(0xcf00102c))
110 110
111#define COP_INT_EN_STAT (*(volatile unsigned long *)(0xcf001030)) 111#define COP_INT_EN_STAT (*(volatile unsigned long *)(0xcf001030))
112#define COP_INT_EN (*(volatile unsigned long *)(0xcf001034)) 112#define COP_INT_EN (*(volatile unsigned long *)(0xcf001034))
113#define COP_INT_CLR (*(volatile unsigned long *)(0xcf001038)) 113#define COP_INT_DIS (*(volatile unsigned long *)(0xcf001038))
114#define COP_INT_PRIORITY (*(volatile unsigned long *)(0xcf00103c)) 114#define COP_INT_PRIORITY (*(volatile unsigned long *)(0xcf00103c))
115 115
116#define IDE_IRQ 1 116#define IDE_IRQ 1
diff --git a/firmware/export/pp5020.h b/firmware/export/pp5020.h
index 52acb2f21b..caae5a7e00 100644
--- a/firmware/export/pp5020.h
+++ b/firmware/export/pp5020.h
@@ -62,12 +62,12 @@
62 62
63#define CPU_INT_EN_STAT (*(volatile unsigned long*)(0x60004020)) 63#define CPU_INT_EN_STAT (*(volatile unsigned long*)(0x60004020))
64#define CPU_INT_EN (*(volatile unsigned long*)(0x60004024)) 64#define CPU_INT_EN (*(volatile unsigned long*)(0x60004024))
65#define CPU_INT_CLR (*(volatile unsigned long*)(0x60004028)) 65#define CPU_INT_DIS (*(volatile unsigned long*)(0x60004028))
66#define CPU_INT_PRIORITY (*(volatile unsigned long*)(0x6000402c)) 66#define CPU_INT_PRIORITY (*(volatile unsigned long*)(0x6000402c))
67 67
68#define COP_INT_EN_STAT (*(volatile unsigned long*)(0x60004030)) 68#define COP_INT_EN_STAT (*(volatile unsigned long*)(0x60004030))
69#define COP_INT_EN (*(volatile unsigned long*)(0x60004034)) 69#define COP_INT_EN (*(volatile unsigned long*)(0x60004034))
70#define COP_INT_CLR (*(volatile unsigned long*)(0x60004038)) 70#define COP_INT_DIS (*(volatile unsigned long*)(0x60004038))
71#define COP_INT_PRIORITY (*(volatile unsigned long*)(0x6000403c)) 71#define COP_INT_PRIORITY (*(volatile unsigned long*)(0x6000403c))
72 72
73#define CPU_HI_INT_STAT (*(volatile unsigned long*)(0x60004100)) 73#define CPU_HI_INT_STAT (*(volatile unsigned long*)(0x60004100))