Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-22 Thread Simon Glass
Hi Stefan, On 22 April 2015 at 08:42, Stefan Roese wrote: > Hi Simon, > > On 22.04.2015 16:39, Simon Glass wrote: > > Applied to u-boot-dm/next, thanks! Do you plan to release a v2015.04.1 stable release at some time? Then please add this patch to this version. As it fixes

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-22 Thread Stefan Roese
Hi Simon, On 22.04.2015 16:39, Simon Glass wrote: Applied to u-boot-dm/next, thanks! Do you plan to release a v2015.04.1 stable release at some time? Then please add this patch to this version. As it fixes SPI NOR flash on SoCFPGA. Maybe we should consider u-boot-stable ... In this case,

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-22 Thread Simon Glass
Hi, On 22 April 2015 at 04:07, Marek Vasut wrote: > On Wednesday, April 22, 2015 at 11:19:53 AM, Stefan Roese wrote: >> Hi Tom, >> >> On 08.04.2015 16:01, Simon Glass wrote: >> > On 7 April 2015 at 20:50, Simon Glass wrote: >> >> On 30 March 2015 at 21:47, Masahiro Yamada >> >> >> >> wrote: >>

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-22 Thread Marek Vasut
On Wednesday, April 22, 2015 at 11:19:53 AM, Stefan Roese wrote: > Hi Tom, > > On 08.04.2015 16:01, Simon Glass wrote: > > On 7 April 2015 at 20:50, Simon Glass wrote: > >> On 30 March 2015 at 21:47, Masahiro Yamada > >> > >> wrote: > >>> CONFIG_SPI does not exist in Kconfig in the first place,

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-22 Thread Stefan Roese
Hi Tom, On 08.04.2015 16:01, Simon Glass wrote: On 7 April 2015 at 20:50, Simon Glass wrote: On 30 March 2015 at 21:47, Masahiro Yamada wrote: CONFIG_SPI does not exist in Kconfig in the first place, so the dependency "depends on DM && SPI" is never met, i.e., DM_SPI_FLASH can never be enab

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-08 Thread Simon Glass
On 7 April 2015 at 20:50, Simon Glass wrote: > > On 30 March 2015 at 21:47, Masahiro Yamada > wrote: > > CONFIG_SPI does not exist in Kconfig in the first place, so the > > dependency "depends on DM && SPI" is never met, i.e., DM_SPI_FLASH > > can never be enabled (unless you ignore the dependenc

Re: [U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-04-07 Thread Simon Glass
On 30 March 2015 at 21:47, Masahiro Yamada wrote: > CONFIG_SPI does not exist in Kconfig in the first place, so the > dependency "depends on DM && SPI" is never met, i.e., DM_SPI_FLASH > can never be enabled (unless you ignore the dependency in an illegal > way. See below.) > > Actually, some def

[U-Boot] [PATCH 01/12] dm: spi_flash: fix wrong dependency

2015-03-30 Thread Masahiro Yamada
CONFIG_SPI does not exist in Kconfig in the first place, so the dependency "depends on DM && SPI" is never met, i.e., DM_SPI_FLASH can never be enabled (unless you ignore the dependency in an illegal way. See below.) Actually, some defconfigs such as socfpga_*_defconfig define CONFIG_DM_SPI_FLASH