spi: Remove used spi_init

spi_init used in some areas in tree, but the respective
drivers will remove in future patches.

So remove the same instances.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
Jagan Teki
2018-11-20 09:02:04 +01:00
parent e2cae51472
commit fe82ca8f71
4 changed files with 0 additions and 11 deletions

View File

@ -23,7 +23,6 @@
#include <os.h>
#include <post.h>
#include <relocate.h>
#include <spi.h>
#include <status_led.h>
#include <sysreset.h>
#include <timer.h>
@ -262,7 +261,6 @@ __weak int init_func_vid(void)
static int init_func_spi(void)
{
puts("SPI: ");
spi_init();
puts("ready\n");
return 0;
}