aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorGireesh Hiremath <Gireesh.Hiremath@in.bosch.com>2021-06-11 16:13:40 +0000
committerLokesh Vutla <lokeshvutla@ti.com>2021-07-15 17:56:03 +0530
commit195854287b02bb6eeed6c6978d3764fe40313b04 (patch)
treeac472f3b7d3f6192b3b79f33567e1dbdbbcc676f /board
parentf379c44a377bb3ec7aee74a69fed7ac97734d179 (diff)
downloadu-boot-195854287b02bb6eeed6c6978d3764fe40313b04.zip
u-boot-195854287b02bb6eeed6c6978d3764fe40313b04.tar.gz
u-boot-195854287b02bb6eeed6c6978d3764fe40313b04.tar.bz2
am335x, guardian: code cleanup and boot optimization
- remove redundant headers and boot modes from board file Signed-off-by: Gireesh Hiremath <Gireesh.Hiremath@in.bosch.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Link: https://lore.kernel.org/r/20210611161350.2141-9-Gireesh.Hiremath@in.bosch.com
Diffstat (limited to 'board')
-rw-r--r--board/bosch/guardian/board.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c
index 9429454..12d047b 100644
--- a/board/bosch/guardian/board.c
+++ b/board/bosch/guardian/board.c
@@ -9,19 +9,14 @@
*/
#include <common.h>
-#include <cpsw.h>
#include <dm.h>
-#include <env.h>
#include <env_internal.h>
#include <errno.h>
#include <i2c.h>
-#include <init.h>
#include <led.h>
-#include <miiphy.h>
#include <panel.h>
#include <asm/global_data.h>
#include <power/tps65217.h>
-#include <power/tps65910.h>
#include <spl.h>
#include <watchdog.h>
#include <asm/arch/clock.h>
@@ -193,27 +188,11 @@ int board_init(void)
#ifdef CONFIG_BOARD_LATE_INIT
static void set_bootmode_env(void)
{
- char *boot_device_name = NULL;
char *boot_mode_gpio = "gpio@44e07000_14";
int ret;
- int value;
struct gpio_desc boot_mode_desc;
- switch (gd->arch.omap_boot_device) {
- case BOOT_DEVICE_NAND:
- boot_device_name = "nand";
- break;
- case BOOT_DEVICE_USBETH:
- boot_device_name = "usbeth";
- break;
- default:
- break;
- }
-
- if (boot_device_name)
- env_set("boot_device", boot_device_name);
-
ret = dm_gpio_lookup_name(boot_mode_gpio, &boot_mode_desc);
if (ret) {
printf("%s is not found\n", boot_mode_gpio);