summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2018-11-20 09:02:04 +0100
committerJagan Teki <jagan@amarulasolutions.com>2018-11-27 21:06:53 +0530
commitfe82ca8f7148295c1b04c02f20ea2ecde859c253 (patch)
treeb586d09aef3904345c837e4f4ce118c14b8daed2 /common
parente2cae514725568bb4d3f8588c816f6ca521fa68f (diff)
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>
Diffstat (limited to 'common')
-rw-r--r--common/board_f.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c
index f1a1432d86..60634e52cd 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -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;
}