diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2019-02-27 15:20:36 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-25 17:36:53 -0400 |
commit | 14453fbfadc2f98ca35d6033140466c7a4b4947a (patch) | |
tree | 3a5274a43080b63d9233357ed3f5fd25c2b08f5b /board/Arcturus | |
parent | 9309aad084bba4cb86f61d4108c4e6152ef6cf7d (diff) | |
download | u-boot-14453fbfadc2f98ca35d6033140466c7a4b4947a.tar.gz u-boot-14453fbfadc2f98ca35d6033140466c7a4b4947a.tar.bz2 u-boot-14453fbfadc2f98ca35d6033140466c7a4b4947a.zip |
Convert CONFIG_SF_DEFAULT_* to Kconfig
This converts the following to Kconfig:
CONFIG_SF_DEFAULT_BUS
CONFIG_SF_DEFAULT_CS
CONFIG_SF_DEFAULT_MODE
CONFIG_SF_DEFAULT_SPEED
I use moveconfig script and then manual check on generated u-boot.cfg
to solve the remaining issue.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'board/Arcturus')
-rw-r--r-- | board/Arcturus/ucp1020/cmd_arc.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/board/Arcturus/ucp1020/cmd_arc.c b/board/Arcturus/ucp1020/cmd_arc.c index 1c42fee3d6..9579d52ffd 100644 --- a/board/Arcturus/ucp1020/cmd_arc.c +++ b/board/Arcturus/ucp1020/cmd_arc.c @@ -15,19 +15,6 @@ #include <asm/io.h> -#ifndef CONFIG_SF_DEFAULT_SPEED -# define CONFIG_SF_DEFAULT_SPEED 1000000 -#endif -#ifndef CONFIG_SF_DEFAULT_MODE -# define CONFIG_SF_DEFAULT_MODE SPI_MODE0 -#endif -#ifndef CONFIG_SF_DEFAULT_CS -# define CONFIG_SF_DEFAULT_CS 0 -#endif -#ifndef CONFIG_SF_DEFAULT_BUS -# define CONFIG_SF_DEFAULT_BUS 0 -#endif - #define MAX_SERIAL_SIZE 15 #define MAX_HWADDR_SIZE 17 |