]> git.baikalelectronics.ru Git - kernel.git/commit
wlcore: fix 64K page support
authorArnd Bergmann <arnd@arndb.de>
Thu, 11 May 2017 11:52:09 +0000 (13:52 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 24 May 2017 13:42:27 +0000 (16:42 +0300)
commit6e243395ebd3cb3ce813107dffa5294142fa388d
tree68fcb9175dd528f2aac85f1ed40fc33e88a74049
parent826911994777843478e0da19575845955ccdbe4f
wlcore: fix 64K page support

In the stable linux-3.16 branch, I ran into a warning in the
wlcore driver:

drivers/net/wireless/ti/wlcore/spi.c: In function 'wl12xx_spi_raw_write':
drivers/net/wireless/ti/wlcore/spi.c:315:1: error: the frame size of 12848 bytes is larger than 2048 bytes [-Werror=frame-larger-than=]

Newer kernels no longer show the warning, but the bug is still there,
as the allocation is based on the CPU page size rather than the
actual capabilities of the hardware.

This replaces the PAGE_SIZE macro with the SZ_4K macro, i.e. 4096 bytes
per buffer.

Cc: stable@vger.kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ti/wlcore/spi.c