Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: 7090/1: CACHE-L2X0: filter start address can be 0 and is often 0

this patch fixes the error in Rob Herring's
ARM: 7009/1: l2x0: Add OF based initialization
http://www.spinics.net/lists/arm-kernel/msg131123.html
it has been in rmk/for-next with commit 41c86ff5b

Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Acked-by: Rob Herring <robherring2@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Barry Song and committed by
Russell King
74d41f39 1caf3092

+1 -1
+1 -1
arch/arm/mm/cache-l2x0.c
··· 437 437 438 438 of_property_read_u32_array(np, "arm,filter-ranges", 439 439 filter, ARRAY_SIZE(filter)); 440 - if (filter[0] && filter[1]) { 440 + if (filter[1]) { 441 441 writel_relaxed(ALIGN(filter[0] + filter[1], SZ_1M), 442 442 l2x0_base + L2X0_ADDR_FILTER_END); 443 443 writel_relaxed((filter[0] & ~(SZ_1M - 1)) | L2X0_ADDR_FILTER_EN,