]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
OMAP3 Fix multiline formatting in board init files.
authorTom Rix <Tom.Rix@windriver.com>
Thu, 2 Apr 2009 03:02:20 +0000 (22:02 -0500)
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Sat, 4 Apr 2009 22:30:38 +0000 (00:30 +0200)
Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
board/omap3/beagle/beagle.c
board/omap3/evm/evm.c
board/omap3/overo/overo.c
board/omap3/pandora/pandora.c
board/omap3/zoom1/zoom1.c

index 8d6065196fab74f9de3e4dd6c79989abdc485fff..cc8e2f9a48060679be7b06f23eba1b6f39175ae6 100644 (file)
 
 static int beagle_revision_c;
 
-/******************************************************************************
+/*
  * Routine: board_init
  * Description: Early hardware init.
- *****************************************************************************/
+ */
 int board_init(void)
 {
        DECLARE_GLOBAL_DATA_PTR;
@@ -55,23 +55,23 @@ int board_init(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: beagle_get_revision
  * Description: Return revision of the BeagleBoard this code is running on.
  *              If it is a revision Ax/Bx board, this function returns 0,
  *              on a revision C board you will get a 1.
- *****************************************************************************/
+ */
 int beagle_get_revision(void)
 {
        return beagle_revision_c;
 }
 
-/******************************************************************************
+/*
  * Routine: beagle_identify
  * Description: Detect if we are running on a Beagle revision Ax/Bx or
  *              Cx. This can be done by GPIO_171. If this is low, we are
  *              running on a revision C board.
- *****************************************************************************/
+ */
 void beagle_identify(void)
 {
        gpio_t *gpio6_base = (gpio_t *)OMAP34XX_GPIO6_BASE;
@@ -92,10 +92,10 @@ void beagle_identify(void)
        }
 }
 
-/******************************************************************************
+/*
  * Routine: misc_init_r
  * Description: Configure board specific parts
- *****************************************************************************/
+ */
 int misc_init_r(void)
 {
        gpio_t *gpio5_base = (gpio_t *)OMAP34XX_GPIO5_BASE;
@@ -121,12 +121,12 @@ int misc_init_r(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: set_muxconf_regs
  * Description: Setting up the configuration Mux registers specific to the
  *             hardware. Many pins need to be moved from protect to primary
  *             mode.
- *****************************************************************************/
+ */
 void set_muxconf_regs(void)
 {
        MUX_BEAGLE();
index 3a27c8fe5dcdfcf465e1dca31310adc3430a77b4..c008c2e4aa454cde03fb9d0341542cf23a67a1a4 100644 (file)
 #include <asm/mach-types.h>
 #include "evm.h"
 
-/******************************************************************************
+/*
  * Routine: board_init
  * Description: Early hardware init.
- *****************************************************************************/
+ */
 int board_init(void)
 {
        DECLARE_GLOBAL_DATA_PTR;
@@ -53,10 +53,10 @@ int board_init(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: misc_init_r
  * Description: Init ethernet (done here so udelay works)
- *****************************************************************************/
+ */
 int misc_init_r(void)
 {
 
@@ -73,22 +73,22 @@ int misc_init_r(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: set_muxconf_regs
  * Description: Setting up the configuration Mux registers specific to the
  *             hardware. Many pins need to be moved from protect to primary
  *             mode.
- *****************************************************************************/
+ */
 void set_muxconf_regs(void)
 {
        MUX_EVM();
 }
 
-/******************************************************************************
+/*
  * Routine: setup_net_chip
  * Description: Setting up the configuration GPMC registers specific to the
  *             Ethernet hardware.
- *****************************************************************************/
+ */
 static void setup_net_chip(void)
 {
        gpio_t *gpio3_base = (gpio_t *)OMAP34XX_GPIO3_BASE;
index 37bf350e4e37588547cc72d4e7ae355b1536c433..809b77b642f1c836fa89ca45a28820627fc41135 100644 (file)
 #include <asm/mach-types.h>
 #include "overo.h"
 
-/******************************************************************************
+/*
  * Routine: board_init
  * Description: Early hardware init.
- *****************************************************************************/
+ */
 int board_init(void)
 {
        DECLARE_GLOBAL_DATA_PTR;
@@ -52,10 +52,10 @@ int board_init(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: misc_init_r
  * Description: Configure board specific parts
- *****************************************************************************/
+ */
 int misc_init_r(void)
 {
        power_init_r();
@@ -65,12 +65,12 @@ int misc_init_r(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: set_muxconf_regs
  * Description: Setting up the configuration Mux registers specific to the
  *             hardware. Many pins need to be moved from protect to primary
  *             mode.
- *****************************************************************************/
+ */
 void set_muxconf_regs(void)
 {
        MUX_OVERO();
index dfd51ecfcba53b7d30ccbf45a2aa191732ea7794..c2f98ead6ad3ceea516b71790cf2f2cf9171defb 100644 (file)
 #include <asm/mach-types.h>
 #include "pandora.h"
 
-/******************************************************************************
+/*
  * Routine: board_init
  * Description: Early hardware init.
- *****************************************************************************/
+ */
 int board_init(void)
 {
        DECLARE_GLOBAL_DATA_PTR;
@@ -53,10 +53,10 @@ int board_init(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: misc_init_r
  * Description: Configure board specific parts
- *****************************************************************************/
+ */
 int misc_init_r(void)
 {
        gpio_t *gpio1_base = (gpio_t *)OMAP34XX_GPIO1_BASE;
@@ -82,12 +82,12 @@ int misc_init_r(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: set_muxconf_regs
  * Description: Setting up the configuration Mux registers specific to the
  *             hardware. Many pins need to be moved from protect to primary
  *             mode.
- *****************************************************************************/
+ */
 void set_muxconf_regs(void)
 {
        MUX_PANDORA();
index 702f7327538a77e75f877b2cc9a8fdfc6296983d..db4d08709feff617d13ff4a788306f4b10c505d5 100644 (file)
 #include <asm/mach-types.h>
 #include "zoom1.h"
 
-/******************************************************************************
+/*
  * Routine: board_init
  * Description: Early hardware init.
- *****************************************************************************/
+ */
 int board_init(void)
 {
        DECLARE_GLOBAL_DATA_PTR;
@@ -54,10 +54,10 @@ int board_init(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: misc_init_r
  * Description: Configure zoom board specific configurations
- *****************************************************************************/
+ */
 int misc_init_r(void)
 {
        power_init_r();
@@ -65,12 +65,12 @@ int misc_init_r(void)
        return 0;
 }
 
-/******************************************************************************
+/*
  * Routine: set_muxconf_regs
  * Description: Setting up the configuration Mux registers specific to the
  *             hardware. Many pins need to be moved from protect to primary
  *             mode.
- *****************************************************************************/
+ */
 void set_muxconf_regs(void)
 {
        /* platform specific muxes */