On Fri, May 08, 2020 at 07:08:35PM +0530, Naresh Kamboju wrote:
On Fri, 8 May 2020 at 18:07, Greg Kroah-Hartman gregkh@linuxfoundation.org wrote:
This is the start of the stable review cycle for the 4.4.223 release. There are 312 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know.
Responses should be made by Sun, 10 May 2020 12:29:44 +0000. Anything received after that time might be too late.
The whole patch series can be found in one patch at: https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.4.223-rc1... or in the git tree and branch at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y and the diffstat can be found below.
thanks,
greg k-h
<trim> > Addy Ke <addy.ke@rock-chips.com> > spi: rockchip: modify DMA max burst to 1
While building kernel Image for arm architecture the following error noticed on stable-rc 4.4 kernel branch
# make -sk KBUILD_BUILD_USER=TuxBuild -C/linux -j16 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- HOSTCC=gcc CC="sccache arm-linux-gnueabihf-gcc" O=build zImage # # # make -sk KBUILD_BUILD_USER=TuxBuild -C/linux -j16 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- HOSTCC=gcc CC="sccache arm-linux-gnueabihf-gcc" O=build modules # ../drivers/spi/spi-rockchip.c: In function ‘rockchip_spi_prepare_dma’: ../drivers/spi/spi-rockchip.c:461:19: error: ‘struct dma_slave_caps’ has no member named ‘max_burst’ 461 | if (rs->dma_caps.max_burst > 4) | ^ ../drivers/spi/spi-rockchip.c:481:19: error: ‘struct dma_slave_caps’ has no member named ‘max_burst’ 481 | if (rs->dma_caps.max_burst > 4) | ^
I just dropped the offending patch, Guenter beat you to it :)
greg k-h