mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
board_r: Remove initr_spi
Drop unused initr_spi, which just return 0, no usage. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
parent
35f9d9bdd0
commit
ef6ce46ad8
1 changed files with 0 additions and 11 deletions
|
@ -36,7 +36,6 @@
|
|||
#include <onenand_uboot.h>
|
||||
#include <scsi.h>
|
||||
#include <serial.h>
|
||||
#include <spi.h>
|
||||
#include <stdio_dev.h>
|
||||
#include <timer.h>
|
||||
#include <trace.h>
|
||||
|
@ -379,13 +378,6 @@ static int initr_flash(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_PPC) && !defined(CONFIG_DM_SPI)
|
||||
static int initr_spi(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CMD_NAND
|
||||
/* go init the NAND */
|
||||
static int initr_nand(void)
|
||||
|
@ -736,9 +728,6 @@ static init_fnc_t init_sequence_r[] = {
|
|||
/* initialize higher level parts of CPU like time base and timers */
|
||||
cpu_init_r,
|
||||
#endif
|
||||
#ifdef CONFIG_PPC
|
||||
initr_spi,
|
||||
#endif
|
||||
#ifdef CONFIG_CMD_NAND
|
||||
initr_nand,
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue