2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>

* clock/clock-config.c: include "../../../shared/clockdrv_shell.h".
	* Makefile.am: Reflect changes above.
This commit is contained in:
Ralf Corsepius
2008-09-30 05:35:15 +00:00
parent 81d86a096f
commit 5681a2bc52
3 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* clock/clock-config.c: include "../../../shared/clockdrv_shell.h".
* Makefile.am: Reflect changes above.
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Eliminate bsp.am. Build startup files as side-effect

View File

@@ -78,7 +78,7 @@ libbsp_a_SOURCES += ../../shared/console.c \
console/console-config.c
# clock
libbsp_a_SOURCES += clock/clock-config.c
libbsp_a_SOURCES += clock/clock-config.c ../../../shared/clockdrv_shell.h
# rtc
libbsp_a_SOURCES += ../../shared/tod.c \

View File

@@ -27,7 +27,7 @@
#include <bsp/irq.h>
#include <bsp/system-clocks.h>
/* This is defined in ../../../shared/clockdrv_shell.c */
/* This is defined in ../../../shared/clockdrv_shell.h */
rtems_isr Clock_isr( rtems_vector_number vector);
#define Clock_driver_support_at_tick() \
@@ -122,4 +122,4 @@ static uint32_t lpc24xx_clock_nanoseconds_since_last_tick( void)
#define Clock_driver_nanoseconds_since_last_tick lpc24xx_clock_nanoseconds_since_last_tick
/* Include shared source clock driver code */
#include "../../../../libbsp/shared/clockdrv_shell.c"
#include "../../../../libbsp/shared/clockdrv_shell.h"