summaryrefslogtreecommitdiffstats
path: root/bsps/arm/csb336
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bsps/arm/csb336/clock/clockdrv.c2
-rw-r--r--bsps/arm/csb336/console/uart.c4
-rw-r--r--bsps/arm/csb336/include/bsp/irq.h2
-rw-r--r--bsps/arm/csb336/irq/irq.c2
-rw-r--r--bsps/arm/csb336/start/bsp_specs0
5 files changed, 5 insertions, 5 deletions
diff --git a/bsps/arm/csb336/clock/clockdrv.c b/bsps/arm/csb336/clock/clockdrv.c
index 58f98d87be..6af507a877 100644
--- a/bsps/arm/csb336/clock/clockdrv.c
+++ b/bsps/arm/csb336/clock/clockdrv.c
@@ -38,7 +38,7 @@ rtems_irq_connect_data clock_isr_data = {
* - clear the interrupt bit?
* - restart the timer?
*/
-#define Clock_driver_support_at_tick() \
+#define Clock_driver_support_at_tick(arg) \
do { \
uint32_t reg; \
\
diff --git a/bsps/arm/csb336/console/uart.c b/bsps/arm/csb336/console/uart.c
index 8d8a0c1ed0..1acb1baa10 100644
--- a/bsps/arm/csb336/console/uart.c
+++ b/bsps/arm/csb336/console/uart.c
@@ -61,7 +61,7 @@ rtems_termios_callbacks imx_uart_cbacks = {
.setAttributes = imx_uart_set_attrs,
.stopRemoteTx = NULL,
.startRemoteTx = NULL,
- .outputUsesInterrupts = 1,
+ .outputUsesInterrupts = TERMIOS_IRQ_DRIVEN,
};
#else
rtems_termios_callbacks imx_uart_cbacks = {
@@ -72,7 +72,7 @@ rtems_termios_callbacks imx_uart_cbacks = {
.setAttributes = imx_uart_set_attrs,
.stopRemoteTx = NULL,
.startRemoteTx = NULL,
- .outputUsesInterrupts = 0,
+ .outputUsesInterrupts = TERMIOS_POLLED,
};
#endif
diff --git a/bsps/arm/csb336/include/bsp/irq.h b/bsps/arm/csb336/include/bsp/irq.h
index 4402a7d6a5..a746a5e859 100644
--- a/bsps/arm/csb336/include/bsp/irq.h
+++ b/bsps/arm/csb336/include/bsp/irq.h
@@ -1,7 +1,7 @@
/*
* Interrupt handler Header file
*
- * Copyright (c) 2010 embedded brains GmbH.
+ * Copyright (c) 2010 embedded brains GmbH & Co. KG
*
* Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.com>
*
diff --git a/bsps/arm/csb336/irq/irq.c b/bsps/arm/csb336/irq/irq.c
index 24a5a9eb57..2834eaf1f7 100644
--- a/bsps/arm/csb336/irq/irq.c
+++ b/bsps/arm/csb336/irq/irq.c
@@ -1,7 +1,7 @@
/*
* Motorola MC9328MXL Interrupt handler
*
- * Copyright (c) 2010 embedded brains GmbH.
+ * Copyright (c) 2010 embedded brains GmbH & Co. KG
*
* Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.com>
*
diff --git a/bsps/arm/csb336/start/bsp_specs b/bsps/arm/csb336/start/bsp_specs
deleted file mode 100644
index e69de29bb2..0000000000
--- a/bsps/arm/csb336/start/bsp_specs
+++ /dev/null