summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-02-05 08:37:21 -0500
committerTom Rini <trini@konsulko.com>2019-02-05 12:29:59 -0500
commitbdac5e18a80427e1f44413dce78aefece956ffc2 (patch)
tree769c69845b4e6643209b60d3959db2616159d4af /board
parentc0bf3968d7fffa135305ba58644773d32f51090a (diff)
parentf18220919079eeb8e79f4791e152f1db073574a8 (diff)
Merge git://git.denx.de/u-boot-marvell
- Move Armada XP / 38x PCIe driver to DM_PCI from me - Move Armada XP / 38x LCD driver to DM_VIDEO from me - Add uDPU board (Armada-3720) from Vladimir [trini: Fix warning in pci-uclass.c by removing ret from pci_uclass_child_post_bind as it no longer calls functions with a return code to catch.] Signed-off-by: Tom Rini <trini@konsulko.com>II
Diffstat (limited to 'board')
-rw-r--r--board/Marvell/mvebu_armada-37xx/MAINTAINERS5
-rw-r--r--board/theadorable/theadorable.c16
2 files changed, 5 insertions, 16 deletions
diff --git a/board/Marvell/mvebu_armada-37xx/MAINTAINERS b/board/Marvell/mvebu_armada-37xx/MAINTAINERS
index 9b0afeef10..f2c0a582d7 100644
--- a/board/Marvell/mvebu_armada-37xx/MAINTAINERS
+++ b/board/Marvell/mvebu_armada-37xx/MAINTAINERS
@@ -9,3 +9,8 @@ ESPRESSOBin BOARD
M: Konstantin Porotchkin <kostap@marvell.com>
S: Maintained
F: configs/mvebu_espressobin-88f3720_defconfig
+
+uDPU BOARD
+M: Vladimir Vid <vladimir.vid@sartura.hr>
+S: Maintained
+F: configs/uDPU_defconfig
diff --git a/board/theadorable/theadorable.c b/board/theadorable/theadorable.c
index b59589ae82..dd6def5e6e 100644
--- a/board/theadorable/theadorable.c
+++ b/board/theadorable/theadorable.c
@@ -218,22 +218,6 @@ int board_eth_init(bd_t *bis)
}
#endif
-int board_video_init(void)
-{
- struct mvebu_lcd_info lcd_info;
-
- /* Reserved memory area via CONFIG_SYS_MEM_TOP_HIDE */
- lcd_info.fb_base = gd->ram_size;
- lcd_info.x_res = 240;
- lcd_info.x_fp = 1;
- lcd_info.x_bp = 45;
- lcd_info.y_res = 320;
- lcd_info.y_fp = 1;
- lcd_info.y_bp = 3;
-
- return mvebu_lcd_register_init(&lcd_info);
-}
-
#ifdef CONFIG_BOARD_LATE_INIT
int board_late_init(void)
{