summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-01-24 15:32:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-01-24 15:32:04 +0000
commite570c3132448071027eefeec239f6ddc9a3ffcdb (patch)
tree8fbc055cf86a187706bc3eba1d098268e5368e41 /c
parent2011-01-24 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-e570c3132448071027eefeec239f6ddc9a3ffcdb.tar.bz2
2011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac, console/console-config.c, i2c/i2c_init.c, include/bsp.h, include/hwreg_vals.h, include/irq.h, include/tm27.h, include/tsec-config.h, irq/irq.c, network/network.c, spi/spi_init.c, startup/bspstart.c: Address some of the issues spotted by the check_bsp script.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/ChangeLog8
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/configure.ac1
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/console/console-config.c2
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/i2c/i2c_init.c5
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/include/bsp.h4
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/include/hwreg_vals.h4
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/include/irq.h5
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/include/tm27.h7
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/include/tsec-config.h2
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/irq/irq.c4
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/network/network.c4
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/spi/spi_init.c5
-rw-r--r--c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c5
13 files changed, 52 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/ChangeLog b/c/src/lib/libbsp/powerpc/gen83xx/ChangeLog
index c363c1e023..93344aabbd 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/gen83xx/ChangeLog
@@ -1,3 +1,11 @@
+2011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, console/console-config.c, i2c/i2c_init.c,
+ include/bsp.h, include/hwreg_vals.h, include/irq.h, include/tm27.h,
+ include/tsec-config.h, irq/irq.c, network/network.c, spi/spi_init.c,
+ startup/bspstart.c: Address some of the issues spotted by the
+ check_bsp script.
+
2011-01-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
* network/network.c: Typo.
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/configure.ac b/c/src/lib/libbsp/powerpc/gen83xx/configure.ac
index 2552ec03cf..00999c6413 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/configure.ac
+++ b/c/src/lib/libbsp/powerpc/gen83xx/configure.ac
@@ -68,6 +68,7 @@ AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
+RTEMS_BSP_BOOTCARD_OPTIONS
RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
RTEMS_PPC_EXCEPTIONS
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/console/console-config.c b/c/src/lib/libbsp/powerpc/gen83xx/console/console-config.c
index 99317e5a45..d338e9207a 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/console/console-config.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/console/console-config.c
@@ -16,6 +16,8 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
*/
#include <rtems/bspIo.h>
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/i2c/i2c_init.c b/c/src/lib/libbsp/powerpc/gen83xx/i2c/i2c_init.c
index 88ebe35b93..0ed7cf8d1e 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/i2c/i2c_init.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/i2c/i2c_init.c
@@ -16,6 +16,11 @@
+-----------------------------------------------------------------+
| this file contains the low level MPC83xx I2C driver parameters |
\*===============================================================*/
+
+/*
+ * $Id$
+ */
+
#include <mpc83xx/mpc83xx_i2cdrv.h>
#include <libchip/i2c-2b-eeprom.h>
#include <bsp/irq.h>
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/include/bsp.h b/c/src/lib/libbsp/powerpc/gen83xx/include/bsp.h
index 781039eb69..a355cea4a3 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/include/bsp.h
+++ b/c/src/lib/libbsp/powerpc/gen83xx/include/bsp.h
@@ -17,6 +17,10 @@
| this file contains board specific definitions |
\*===============================================================*/
+/*
+ * $Id$
+ */
+
#ifndef __GEN83xx_BSP_h
#define __GEN83xx_BSP_h
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/include/hwreg_vals.h b/c/src/lib/libbsp/powerpc/gen83xx/include/hwreg_vals.h
index f5786812b6..ea621a7616 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/include/hwreg_vals.h
+++ b/c/src/lib/libbsp/powerpc/gen83xx/include/hwreg_vals.h
@@ -17,6 +17,10 @@
| this file contains board specific definitions |
\*===============================================================*/
+/*
+ * $Id$
+ */
+
#ifndef __GEN83xx_HWREG_VALS_h
#define __GEN83xx_HWREG_VALS_h
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/include/irq.h b/c/src/lib/libbsp/powerpc/gen83xx/include/irq.h
index 7e7a8d97df..ceb1f9aa76 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/include/irq.h
+++ b/c/src/lib/libbsp/powerpc/gen83xx/include/irq.h
@@ -16,6 +16,11 @@
+-----------------------------------------------------------------+
| this file declares constants of the interrupt controller |
\*===============================================================*/
+
+/*
+ * $Id$
+ */
+
#ifndef GEN83xx_IRQ_IRQ_H
#define GEN83xx_IRQ_IRQ_H
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/include/tm27.h b/c/src/lib/libbsp/powerpc/gen83xx/include/tm27.h
index ec63e160fa..5f5ef786b3 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/include/tm27.h
+++ b/c/src/lib/libbsp/powerpc/gen83xx/include/tm27.h
@@ -12,8 +12,11 @@
* Germany
* rtems@embedded-brains.de
*
- * The license and distribution terms for this file may be found in the file
- * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
*/
#ifndef _RTEMS_TMTEST27
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/include/tsec-config.h b/c/src/lib/libbsp/powerpc/gen83xx/include/tsec-config.h
index 4dad6fd158..fee7e81d33 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/include/tsec-config.h
+++ b/c/src/lib/libbsp/powerpc/gen83xx/include/tsec-config.h
@@ -10,6 +10,8 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
*/
#ifndef LIBBSP_POWERPC_GEN83XX_TSEC_CONFIG_H
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/irq/irq.c b/c/src/lib/libbsp/powerpc/gen83xx/irq/irq.c
index 0fd0d2ba4f..869bffd65d 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/irq/irq.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/irq/irq.c
@@ -17,6 +17,10 @@
| this file integrates the IPIC irq controller |
\*===============================================================*/
+/*
+ * $Id$
+ */
+
#include <mpc83xx/mpc83xx.h>
#include <rtems.h>
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/network/network.c b/c/src/lib/libbsp/powerpc/gen83xx/network/network.c
index 8892118b0d..cd46b9e1b5 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/network/network.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/network/network.c
@@ -18,6 +18,10 @@
| of the network interface driver |
\*===============================================================*/
+/*
+ * $Id$
+ */
+
#include <rtems.h>
#include <rtems/rtems_bsdnet.h>
#include <rtems/rtems_bsdnet_internal.h>
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/spi/spi_init.c b/c/src/lib/libbsp/powerpc/gen83xx/spi/spi_init.c
index ef36472ab7..c59bd73f98 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/spi/spi_init.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/spi/spi_init.c
@@ -17,6 +17,11 @@
| this file contains the low level MPC83xx SPI driver parameters |
| and board-specific functions |
\*===============================================================*/
+
+/*
+ * $Id$
+ */
+
#include <mpc83xx/mpc83xx_spidrv.h>
#include <bsp/irq.h>
#include <bsp.h>
diff --git a/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c b/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
index 152671dc40..f5ea69cfea 100644
--- a/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/gen83xx/startup/bspstart.c
@@ -14,8 +14,9 @@
* Germany
* rtems@embedded-brains.de
*
- * The license and distribution terms for this file may be found in the file
- * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
*
* $Id$
*/