summaryrefslogtreecommitdiffstats
path: root/board/spd8xx/flash.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-12-15 23:26:10 +0900
committerTom Rini <trini@ti.com>2015-01-05 12:08:51 -0500
commit72ba368f45a3cdec0bb33a70cd7eec8bb64dceb1 (patch)
tree1e21dd2598a2a4b149adde846519fc76fb2386b1 /board/spd8xx/flash.c
parent4317d070db98281fe2f65da01398a6e05a423d70 (diff)
downloadblackbird-obmc-uboot-72ba368f45a3cdec0bb33a70cd7eec8bb64dceb1.tar.gz
blackbird-obmc-uboot-72ba368f45a3cdec0bb33a70cd7eec8bb64dceb1.zip
mpc8xx: remove SPD823TS board support
This board is still a non-generic board. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/spd8xx/flash.c')
-rw-r--r--board/spd8xx/flash.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/board/spd8xx/flash.c b/board/spd8xx/flash.c
deleted file mode 100644
index 4a332e037b..0000000000
--- a/board/spd8xx/flash.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * (C) Copyright 2000
- * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <mpc8xx.h>
-
-flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
-
-/*-----------------------------------------------------------------------
- */
-
-unsigned long flash_init (void)
-{
- /* All Speech Design board memory (DRAM and EPROM) initialisation is
- done in dram_init().
- The caller of ths function here expects the total size and will hang,
- if we give here back 0. So we return the EPROM size. */
-
- return (1024 * 1024); /* 1 MB */
-}
-
-/*-----------------------------------------------------------------------
- */
-
-void flash_print_info (flash_info_t *info)
-{
- printf("no FLASH memory in MPC823TS board\n");
- return;
-}
-
-int flash_erase (flash_info_t *info, int s_first, int s_last)
-{
- return 1;
-}
-
-/*-----------------------------------------------------------------------
- */
OpenPOWER on IntegriCloud