diff options
author | Tom Rini <trini@konsulko.com> | 2016-07-11 18:50:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-11 18:50:29 -0400 |
commit | bff97dde8c8cf6fd5f04bb26fca83f61eadc1741 (patch) | |
tree | 544f4a0d7d5668388eaf8a157c16cf6bb8ead134 /common | |
parent | 94fbd3e37d6bdbf5490a185607ca20f862637220 (diff) | |
parent | 96907c0fe50a856f66f60ade68864a2d7949bf15 (diff) | |
download | u-boot-imx-bff97dde8c8cf6fd5f04bb26fca83f61eadc1741.zip u-boot-imx-bff97dde8c8cf6fd5f04bb26fca83f61eadc1741.tar.gz u-boot-imx-bff97dde8c8cf6fd5f04bb26fca83f61eadc1741.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-spi
Diffstat (limited to 'common')
-rw-r--r-- | common/env_sf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/env_sf.c b/common/env_sf.c index 273098c..c53200f 100644 --- a/common/env_sf.c +++ b/common/env_sf.c @@ -55,9 +55,9 @@ int saveenv(void) #ifdef CONFIG_DM_SPI_FLASH struct udevice *new; + /* speed and mode will be read from DT */ ret = spi_flash_probe_bus_cs(CONFIG_ENV_SPI_BUS, CONFIG_ENV_SPI_CS, - CONFIG_ENV_SPI_MAX_HZ, - CONFIG_ENV_SPI_MODE, &new); + 0, 0, &new); if (ret) { set_default_env("!spi_flash_probe_bus_cs() failed"); return 1; @@ -245,9 +245,9 @@ int saveenv(void) #ifdef CONFIG_DM_SPI_FLASH struct udevice *new; + /* speed and mode will be read from DT */ ret = spi_flash_probe_bus_cs(CONFIG_ENV_SPI_BUS, CONFIG_ENV_SPI_CS, - CONFIG_ENV_SPI_MAX_HZ, - CONFIG_ENV_SPI_MODE, &new); + 0, 0, &new); if (ret) { set_default_env("!spi_flash_probe_bus_cs() failed"); return 1; |