summaryrefslogtreecommitdiff
path: root/board/renesas/sh7752evb/sh7752evb.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-06-17 11:32:22 -0400
committerTom Rini <trini@konsulko.com>2019-06-17 11:32:22 -0400
commitc3f43185eeb9e600c6cc0e7721f52c749e14c666 (patch)
treeb79e54432f4da8bc868c411791a704d8c4a2cb19 /board/renesas/sh7752evb/sh7752evb.c
parentc3e8aa1a9ed5f6db7345b23a2f8f136e987ebd4d (diff)
parent88369d33e322e0cdfbb1f0c33021ad424578619e (diff)
Merge branch 'master' of git://git.denx.de/u-boot-spi
- Drop zipitz2 board (Tom) - Add DEPRECATED option (Tom) - Mark legacy or non-dm drivers as DEPRECATED (Jagan)
Diffstat (limited to 'board/renesas/sh7752evb/sh7752evb.c')
-rw-r--r--board/renesas/sh7752evb/sh7752evb.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/renesas/sh7752evb/sh7752evb.c b/board/renesas/sh7752evb/sh7752evb.c
index 480933b3cc..da33a0bd8a 100644
--- a/board/renesas/sh7752evb/sh7752evb.c
+++ b/board/renesas/sh7752evb/sh7752evb.c
@@ -174,6 +174,7 @@ int board_mmc_init(bd_t *bis)
static int get_sh_eth_mac_raw(unsigned char *buf, int size)
{
+#ifdef CONFIG_DEPRECATED
struct spi_flash *spi;
int ret;
@@ -190,6 +191,7 @@ static int get_sh_eth_mac_raw(unsigned char *buf, int size)
return 1;
}
spi_flash_free(spi);
+#endif
return 0;
}
@@ -239,6 +241,7 @@ int board_late_init(void)
return 0;
}
+#ifdef CONFIG_DEPRECATED
int do_write_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
int i, ret;
@@ -302,3 +305,4 @@ U_BOOT_CMD(
"write MAC address for GETHERC",
"[GETHERC ch0] [GETHERC ch1]\n"
);
+#endif