diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2008-06-03 05:08:24 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2008-06-03 05:08:24 +0000 |
commit | 191320cd0f39a1dd831273f6ad57602d1b2e6cf9 (patch) | |
tree | ceedf028763a7855bf1b2caeb11765e7c6dd79af /firmware/export/pp5002.h | |
parent | 606d9d0c83f8396fa418fa16a23da68aa2e4d784 (diff) |
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/pp5002.h')
-rw-r--r-- | firmware/export/pp5002.h | 4 |
1 files changed, 2 insertions, 2 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 @@ #define CPU_INT_EN_STAT (*(volatile unsigned long *)(0xcf001020)) #define CPU_INT_EN (*(volatile unsigned long *)(0xcf001024)) -#define CPU_INT_CLR (*(volatile unsigned long *)(0xcf001028)) +#define CPU_INT_DIS (*(volatile unsigned long *)(0xcf001028)) #define CPU_INT_PRIORITY (*(volatile unsigned long *)(0xcf00102c)) #define COP_INT_EN_STAT (*(volatile unsigned long *)(0xcf001030)) #define COP_INT_EN (*(volatile unsigned long *)(0xcf001034)) -#define COP_INT_CLR (*(volatile unsigned long *)(0xcf001038)) +#define COP_INT_DIS (*(volatile unsigned long *)(0xcf001038)) #define COP_INT_PRIORITY (*(volatile unsigned long *)(0xcf00103c)) #define IDE_IRQ 1 |