diff options
| author | Wolfgang Denk <wd@denx.de> | 2009-04-05 23:04:30 +0200 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-04-05 23:04:30 +0200 |
| commit | 712ac6a1a6909a58d6549fb220cc921a7e9f9979 (patch) | |
| tree | 7391a68d2b81d9a9096e170b97bbfe0ed81c2c7f /board/omap3/beagle/beagle.c | |
| parent | 23e4af49e066a53cd3e3659b68ef90572d88de84 (diff) | |
| parent | c6fadb9c73a6a3e0c7f20696e978304a593a8d2d (diff) | |
| download | olio-uboot-2014.01-712ac6a1a6909a58d6549fb220cc921a7e9f9979.tar.xz olio-uboot-2014.01-712ac6a1a6909a58d6549fb220cc921a7e9f9979.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'board/omap3/beagle/beagle.c')
| -rw-r--r-- | board/omap3/beagle/beagle.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/board/omap3/beagle/beagle.c b/board/omap3/beagle/beagle.c index 8d6065196..cc8e2f9a4 100644 --- a/board/omap3/beagle/beagle.c +++ b/board/omap3/beagle/beagle.c @@ -38,10 +38,10 @@ 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(); |