minor changes so it would compile

This commit is contained in:
Joel Sherrill
1995-12-05 15:28:12 +00:00
parent 11ab74ef98
commit ca201c9b6a
5 changed files with 13 additions and 17 deletions

View File

@@ -18,9 +18,7 @@
*/ */
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/fatal.h> #include <rtems/score/isr.h>
#include <rtems/core/isr.h>
#include <rtems/core/wkspace.h>
void hppa_external_interrupt_initialize(void); void hppa_external_interrupt_initialize(void);
void hppa_external_interrupt_enable(unsigned32); void hppa_external_interrupt_enable(unsigned32);

View File

@@ -30,9 +30,9 @@
extern "C" { extern "C" {
#endif #endif
#include <rtems/core/hppa.h> /* pick up machine definitions */ #include <rtems/score/hppa.h> /* pick up machine definitions */
#ifndef ASM #ifndef ASM
#include <rtems/core/hppatypes.h> #include <rtems/score/hppatypes.h>
#endif #endif
/* conditional compilation parameters */ /* conditional compilation parameters */

View File

@@ -27,11 +27,11 @@
# $Id$ # $Id$
# #
#include <rtems/core/hppa.h> #include <rtems/score/hppa.h>
#include <rtems/core/cpu_asm.h> #include <rtems/score/cpu_asm.h>
#include <rtems/core/cpu.h> #include <rtems/score/cpu.h>
#include <rtems/core/offsets.h> #include <rtems/score/offsets.h>
.SPACE $PRIVATE$ .SPACE $PRIVATE$
.SUBSPA $DATA$,QUAD=1,ALIGN=8,ACCESS=31 .SUBSPA $DATA$,QUAD=1,ALIGN=8,ACCESS=31

View File

@@ -64,23 +64,23 @@ extern "C" {
* present in a particular member of the family. * present in a particular member of the family.
*/ */
#if !defined(RTEMS_MODEL_NAME) #if !defined(CPU_MODEL_NAME)
#if defined(hppa7100) #if defined(hppa7100)
#define RTEMS_MODEL_NAME "hppa 7100" #define CPU_MODEL_NAME "hppa 7100"
#elif defined(hppa7200) #elif defined(hppa7200)
#define RTEMS_MODEL_NAME "hppa 7200" #define CPU_MODEL_NAME "hppa 7200"
#else #else
#define RTEMS_MODEL_NAME Unsupported CPU Model /* cause an error on usage */ #define CPU_MODEL_NAME Unsupported CPU Model /* cause an error on usage */
#endif #endif
#endif /* !defined(RTEMS_MODEL_NAME) */ #endif /* !defined(CPU_MODEL_NAME) */
/* /*
* Define the name of the CPU family. * Define the name of the CPU family.

View File

@@ -18,9 +18,7 @@
*/ */
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/fatal.h> #include <rtems/score/isr.h>
#include <rtems/core/isr.h>
#include <rtems/core/wkspace.h>
void hppa_external_interrupt_initialize(void); void hppa_external_interrupt_initialize(void);
void hppa_external_interrupt_enable(unsigned32); void hppa_external_interrupt_enable(unsigned32);