diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-29 22:03:00 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-29 22:03:00 +0200 |
commit | 0c0892be0d93a5a892b93739c5eb3bf692fed4ff (patch) | |
tree | a046b11024bdf0a41082647c95df23a10cb206fc /board/Marvell/rd6281a | |
parent | d75c2a3d7f34ff1eb9920ad72483cff7cb6d358f (diff) | |
parent | 28e57108a61bd0e554d9847170b8ad9dad093e07 (diff) | |
download | u-boot-imx-0c0892be0d93a5a892b93739c5eb3bf692fed4ff.zip u-boot-imx-0c0892be0d93a5a892b93739c5eb3bf692fed4ff.tar.gz u-boot-imx-0c0892be0d93a5a892b93739c5eb3bf692fed4ff.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-marvell
Conflicts:
include/configs/km_arm.h
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/Marvell/rd6281a')
-rw-r--r-- | board/Marvell/rd6281a/config.mk | 28 | ||||
-rw-r--r-- | board/Marvell/rd6281a/rd6281a.c | 6 |
2 files changed, 5 insertions, 29 deletions
diff --git a/board/Marvell/rd6281a/config.mk b/board/Marvell/rd6281a/config.mk deleted file mode 100644 index 761c2bb..0000000 --- a/board/Marvell/rd6281a/config.mk +++ /dev/null @@ -1,28 +0,0 @@ -# -# (C) Copyright 2009 -# Marvell Semiconductor <www.marvell.com> -# Written-by: Prafulla Wadaskar <prafulla@marvell.com> -# -# See file CREDITS for list of people who contributed to this -# project. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -# MA 02110-1301 USA -# - -CONFIG_SYS_TEXT_BASE = 0x00600000 - -# Kirkwood Boot Image configuration file -KWD_CONFIG = $(SRCTREE)/board/$(BOARDDIR)/kwbimage.cfg diff --git a/board/Marvell/rd6281a/rd6281a.c b/board/Marvell/rd6281a/rd6281a.c index 0d76146..e69e035 100644 --- a/board/Marvell/rd6281a/rd6281a.c +++ b/board/Marvell/rd6281a/rd6281a.c @@ -31,7 +31,7 @@ DECLARE_GLOBAL_DATA_PTR; -int board_init(void) +int board_early_init_f(void) { /* * default gpio configuration @@ -97,7 +97,11 @@ int board_init(void) 0 }; kirkwood_mpp_conf(kwmpp_config); + return 0; +} +int board_init(void) +{ /* * arch number of board */ |