Skip to content
Snippets Groups Projects
Commit 29e4049e authored by patacongo's avatar patacongo
Browse files

fix some register typing

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4080 42af7a65-404d-4744-a932-0658087f49c3
parent f84c2437
No related branches found
No related tags found
No related merge requests found
......@@ -414,7 +414,7 @@ static inline void cp0_putstatus(irqstate_t status)
static inline uint32_t cp0_getcause(void)
{
register irqstate_t cause;
register uint32_t cause;
__asm__ __volatile__
(
"\t.set push\n"
......
......@@ -83,14 +83,14 @@
static inline uint32_t cp0_getintctl(void)
{
register irqstate_t ebase;
register uint32_t intctl;
__asm__ __volatile__
(
"\t.set push\n"
"\t.set noat\n"
"\t mfc0 %0, $12, 1\n" /* Get CP0 IntCtl register */
"\t.set pop\n"
: "=r" (ebase)
: "=r" (intctl)
:
: "memory"
);
......@@ -112,7 +112,7 @@ static inline uint32_t cp0_getintctl(void)
*
****************************************************************************/
static inline void cp0_putintctl(uint32_t ebase)
static inline void cp0_putintctl(uint32_t intctl)
{
__asm__ __volatile__
(
......@@ -122,7 +122,7 @@ static inline void cp0_putintctl(uint32_t ebase)
"\tmtc0 %0, $12, 1\n" /* Set the IntCtl to the provided value */
"\t.set pop\n"
:
: "r" (ebase)
: "r" (intctl)
: "memory"
);
}
......@@ -143,7 +143,7 @@ static inline void cp0_putintctl(uint32_t ebase)
static inline uint32_t cp0_getebase(void)
{
register irqstate_t ebase;
register uint32_t ebase;
__asm__ __volatile__
(
"\t.set push\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment