Changeset 4caeb10 in rtems
- Timestamp:
- 04/01/04 10:17:32 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 30f66299
- Parents:
- 6c7c65d2
- Location:
- c/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r6c7c65d2 r4caeb10 1 2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org> 2 3 * librdbg/src/i386/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>. 4 * librdbg/src/m68k/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>. 5 * librdbg/src/powerpc/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>. 6 * libchip/ide/ata.c: Include <rtems/chain.h> instead of <chain.h>. 7 * libchip/ide/ide_controller.c: Include <rtems/chain.h> instead of <chain.h>. 8 * libchip/shmdr/shm_driver.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>. 9 * libchip/serial/ns16550.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>. 10 1 11 2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> 2 12 -
c/src/libchip/ide/ata.c
r6c7c65d2 r4caeb10 17 17 */ 18 18 #include <errno.h> 19 #include < chain.h>19 #include <rtems/chain.h> 20 20 #include <assert.h> 21 21 #include <string.h> /* for "memset" declaration */ -
c/src/libchip/ide/ide_controller.c
r6c7c65d2 r4caeb10 15 15 * 16 16 */ 17 #include < chain.h>17 #include <rtems/chain.h> 18 18 #include <assert.h> 19 19 #include <rtems/blkdev.h> -
c/src/libchip/serial/ns16550.c
r6c7c65d2 r4caeb10 24 24 #include <rtems/libio.h> 25 25 #include <stdlib.h> 26 #include <r ingbuf.h>26 #include <rtems/ringbuf.h> 27 27 28 28 #include <libchip/serial.h> -
c/src/libchip/shmdr/shm_driver.h
r6c7c65d2 r4caeb10 20 20 #define __SHM_h 21 21 22 #include < clockdrv.h>22 #include <rtems/clockdrv.h> 23 23 24 24 #ifdef __cplusplus -
c/src/librdbg/src/i386/rdbg_cpu_asm.S
r6c7c65d2 r4caeb10 8 8 */ 9 9 10 #include < asm.h>10 #include <rtems/asm.h> 11 11 12 12 BEGIN_CODE -
c/src/librdbg/src/m68k/rdbg_cpu_asm.S
r6c7c65d2 r4caeb10 8 8 */ 9 9 10 #include < asm.h>10 #include <rtems/asm.h> 11 11 #include <rtems/score/cpu.h> 12 12 -
c/src/librdbg/src/powerpc/rdbg_cpu_asm.S
r6c7c65d2 r4caeb10 8 8 */ 9 9 10 #include < asm.h>10 #include <rtems/asm.h> 11 11 #include <rtems/score/cpu.h> 12 12 #include <libcpu/io.h>
Note: See TracChangeset
for help on using the changeset viewer.