* rtems/new-exceptions/cpu.h: Changed define
	CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER to UINT32_MAX to avoid comparison
	between signed and unsigned.
This commit is contained in:
Joel Sherrill
2008-08-05 13:32:27 +00:00
parent 14f4b7124f
commit 334b3c1e83
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-08-04 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/new-exceptions/cpu.h: Changed define
CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER to UINT32_MAX to avoid comparison
between signed and unsigned.
2008-07-18 Sebastian Huber <sebastian.huber@embedded-brains.de> 2008-07-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/powerpc/registers.h: Added masks for BOOKE_TCR fields. * rtems/powerpc/registers.h: Added masks for BOOKE_TCR fields.

View File

@@ -248,7 +248,7 @@ SCORE_EXTERN struct {
*/ */
#define CPU_INTERRUPT_NUMBER_OF_VECTORS (0) #define CPU_INTERRUPT_NUMBER_OF_VECTORS (0)
#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER (-1) #define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER (UINT32_MAX)
/* /*
* This is defined if the port has a special way to report the ISR nesting * This is defined if the port has a special way to report the ISR nesting