PIC32MZ: Fixes from Kristopher Tate

This commit is contained in:
Gregory Nutt 2015-03-11 10:25:51 -06:00
parent f72079cc63
commit 48efd2a6a8
2 changed files with 5 additions and 5 deletions

View File

@ -112,7 +112,7 @@
/* Exported symbols */
.globl __reset
.global __reset
.global __start
.global halt
.global devcfg
@ -371,7 +371,7 @@ __start:
la sp, PIC32MZ_STACK_TOP
/* Initialize the globl pointer (gp). _gp is initialized by the linker
/* Initialize the global pointer (gp). _gp is initialized by the linker
* script to point to the "middle" of the small variables region.
*/

View File

@ -129,7 +129,7 @@ static uintptr_t pic32mz_iec(int irq)
{
if ((unsigned)irq < NR_IRQS)
{
return PIC32MZ_INT_IEC_OFFSET(irq);
return PIC32MZ_INT_IEC(irq);
}
return 0;
@ -143,7 +143,7 @@ static uintptr_t pic32mz_iecset(int irq)
{
if ((unsigned)irq < NR_IRQS)
{
return PIC32MZ_INT_IECSET_OFFSET(irq);
return PIC32MZ_INT_IECSET(irq);
}
return 0;
@ -157,7 +157,7 @@ static uintptr_t pic32mz_iecclr(int irq)
{
if ((unsigned)irq < NR_IRQS)
{
return PIC32MZ_INT_IECCLR_OFFSET(irq);
return PIC32MZ_INT_IECCLR(irq);
}
return 0;