2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org>

* vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
	* startup/genpvec.c: Include <rtems/chain.h> instead of <chain.h>.
	* include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
	* include/bsp.h: Include <rtems/console.h> instead of <console.h>.
	* include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
	* console/consolebsp.h: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
	* startup/vmeintr.c: Include <rtems/vmeintr.h> instead of <vmeintr.h>.
This commit is contained in:
Ralf Corsepius
2004-04-01 10:11:08 +00:00
parent 8da27232de
commit 1c54724638
6 changed files with 17 additions and 7 deletions

View File

@@ -1,3 +1,13 @@
2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
* startup/genpvec.c: Include <rtems/chain.h> instead of <chain.h>.
* include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
* include/bsp.h: Include <rtems/console.h> instead of <console.h>.
* include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
* console/consolebsp.h: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
* startup/vmeintr.c: Include <rtems/vmeintr.h> instead of <vmeintr.h>.
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* PCI_bus/PCI.c, PCI_bus/PCI.h, PCI_bus/flash.c, PCI_bus/universe.c,

View File

@@ -16,7 +16,7 @@
#define __CONSOLEBSP_H
#include <rtems.h>
#include <ringbuf.h>
#include <rtems/ringbuf.h>
#ifdef __cplusplus
extern "C" {

View File

@@ -40,9 +40,9 @@ extern "C" {
#else
#include <rtems.h>
#include <console.h>
#include <clockdrv.h>
#include <iosupp.h>
#include <rtems/console.h>
#include <rtems/clockdrv.h>
#include <rtems/iosupp.h>
/*
* We no longer support the first generation board.

View File

@@ -14,7 +14,7 @@
*/
#include <bsp.h>
#include <chain.h>
#include <rtems/chain.h>
#include <assert.h>
#include <stdio.h> /* for sprintf */

View File

@@ -14,7 +14,7 @@
#include <rtems.h>
#include <bsp.h>
#include <vmeintr.h>
#include <rtems/vmeintr.h>
/*PAGE
*

View File

@@ -26,7 +26,7 @@
*/
#include <bsp.h>
#include <asm.h>
#include <rtems/asm.h>
#ifndef PPC_VECTOR_FILE_BASE
#error "PPC_VECTOR_FILE_BASE is not defined."