summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-11 10:24:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-11 10:24:49 +0000
commit052534c2b020b8073480a8a31895d6868e6ab620 (patch)
tree01b6fa9fb7a946e83271cc8eae6747ce9e77cf87 /c
parent2008-12-11 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-052534c2b020b8073480a8a31895d6868e6ab620.tar.bz2
Include ../../../../libbsp/shared/clockdrv_shell.h instead of ../../../../libbsp/shared/clockdrv_shell.c.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/arm/at91rm9200/clock/clock.c2
-rw-r--r--c/src/lib/libcpu/arm/lpc22xx/clock/clockdrv.c6
-rw-r--r--c/src/lib/libcpu/arm/mc9328mxl/clock/clockdrv.c4
-rw-r--r--c/src/lib/libcpu/arm/s3c2400/clock/clockdrv.c4
-rw-r--r--c/src/lib/libcpu/arm/s3c24xx/clock/clockdrv.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/c/src/lib/libcpu/arm/at91rm9200/clock/clock.c b/c/src/lib/libcpu/arm/at91rm9200/clock/clock.c
index 7f32b29ccf..cc06c4a794 100644
--- a/c/src/lib/libcpu/arm/at91rm9200/clock/clock.c
+++ b/c/src/lib/libcpu/arm/at91rm9200/clock/clock.c
@@ -112,4 +112,4 @@ void Clock_driver_support_shutdown_hardware( void )
BSP_remove_rtems_irq_handler(&clock_isr_data);
}
-#include "../../../../libbsp/shared/clockdrv_shell.c"
+#include "../../../../libbsp/shared/clockdrv_shell.h"
diff --git a/c/src/lib/libcpu/arm/lpc22xx/clock/clockdrv.c b/c/src/lib/libcpu/arm/lpc22xx/clock/clockdrv.c
index 47276fd8d5..b8859f7bfa 100644
--- a/c/src/lib/libcpu/arm/lpc22xx/clock/clockdrv.c
+++ b/c/src/lib/libcpu/arm/lpc22xx/clock/clockdrv.c
@@ -20,7 +20,7 @@
#include <lpc22xx.h>
#include <rtems/bspIo.h> /* for printk */
-/* this is defined in ../../../shared/clockdrv_shell.c */
+/* this is defined in ../../../shared/clockdrv_shell.h */
rtems_isr Clock_isr(rtems_vector_number vector);
static void clock_isr_on(const rtems_irq_connect_data *unused);
static void clock_isr_off(const rtems_irq_connect_data *unused);
@@ -42,7 +42,7 @@ rtems_irq_connect_data clock_isr_data = {LPC22xx_INTERRUPT_TIMER0,
- /*use the /shared/clockdrv_shell.c code template */
+/* use the /shared/clockdrv_shell.h code template */
/**
* When we get the clock interrupt
@@ -155,5 +155,5 @@ static int clock_isr_is_on(const rtems_irq_connect_data *irq)
/* Make sure to include this, and only at the end of the file */
-#include "../../../../libbsp/shared/clockdrv_shell.c"
+#include "../../../../libbsp/shared/clockdrv_shell.h"
diff --git a/c/src/lib/libcpu/arm/mc9328mxl/clock/clockdrv.c b/c/src/lib/libcpu/arm/mc9328mxl/clock/clockdrv.c
index f89463dade..d54cf74543 100644
--- a/c/src/lib/libcpu/arm/mc9328mxl/clock/clockdrv.c
+++ b/c/src/lib/libcpu/arm/mc9328mxl/clock/clockdrv.c
@@ -21,7 +21,7 @@
#include <mc9328mxl.h>
#include <rtems/bspIo.h> /* for printk */
-/* this is defined in ../../../shared/clockdrv_shell.c */
+/* this is defined in ../../../shared/clockdrv_shell.h */
rtems_isr Clock_isr(rtems_vector_number vector);
static void clock_isr_on(const rtems_irq_connect_data *unused);
static void clock_isr_off(const rtems_irq_connect_data *unused);
@@ -145,4 +145,4 @@ static int clock_isr_is_on(const rtems_irq_connect_data *irq)
/* Make sure to include this, and only at the end of the file */
-#include "../../../../libbsp/shared/clockdrv_shell.c"
+#include "../../../../libbsp/shared/clockdrv_shell.h"
diff --git a/c/src/lib/libcpu/arm/s3c2400/clock/clockdrv.c b/c/src/lib/libcpu/arm/s3c2400/clock/clockdrv.c
index 032d182546..959137fc01 100644
--- a/c/src/lib/libcpu/arm/s3c2400/clock/clockdrv.c
+++ b/c/src/lib/libcpu/arm/s3c2400/clock/clockdrv.c
@@ -17,7 +17,7 @@
#include <bsp.h>
#include <s3c2400.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);
static void clock_isr_on(const rtems_irq_connect_data *unused);
static void clock_isr_off(const rtems_irq_connect_data *unused);
@@ -134,4 +134,4 @@ static int clock_isr_is_on(const rtems_irq_connect_data *irq)
/* Make sure to include this, and only at the end of the file */
-#include "../../../../libbsp/shared/clockdrv_shell.c"
+#include "../../../../libbsp/shared/clockdrv_shell.h"
diff --git a/c/src/lib/libcpu/arm/s3c24xx/clock/clockdrv.c b/c/src/lib/libcpu/arm/s3c24xx/clock/clockdrv.c
index 7cfdc55f5f..28da59f8b5 100644
--- a/c/src/lib/libcpu/arm/s3c24xx/clock/clockdrv.c
+++ b/c/src/lib/libcpu/arm/s3c24xx/clock/clockdrv.c
@@ -17,7 +17,7 @@
#include <bsp.h>
#include <s3c24xx.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);
static void clock_isr_on(const rtems_irq_connect_data *unused);
static void clock_isr_off(const rtems_irq_connect_data *unused);
@@ -134,4 +134,4 @@ static int clock_isr_is_on(const rtems_irq_connect_data *irq)
/* Make sure to include this, and only at the end of the file */
-#include "../../../../libbsp/shared/clockdrv_shell.c"
+#include "../../../../libbsp/shared/clockdrv_shell.h"