diff options
author | Jagan Teki | 2018-11-20 09:02:04 +0100 |
---|---|---|
committer | Jagan Teki | 2018-11-27 21:06:53 +0530 |
commit | fe82ca8f7148295c1b04c02f20ea2ecde859c253 (patch) | |
tree | b586d09aef3904345c837e4f4ce118c14b8daed2 /common | |
parent | e2cae514725568bb4d3f8588c816f6ca521fa68f (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.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c index f1a1432d869..60634e52cd7 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; } |