Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a85cb4b authored by Jan Luebbe's avatar Jan Luebbe Committed by Russell King
Browse files

ARM: 8887/1: aurora-l2: add prefix to MAX_RANGE_SIZE



The macro name is too generic, so add a AURORA_ prefix.

Signed-off-by: default avatarJan Luebbe <jlu@pengutronix.de>
Reviewed-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: default avatarChris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 921a3fe5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#define AURORA_ACR_FORCE_WRITE_THRO_POLICY	\
	(2 << AURORA_ACR_FORCE_WRITE_POLICY_OFFSET)

#define MAX_RANGE_SIZE		1024
#define AURORA_MAX_RANGE_SIZE	1024

#define AURORA_WAY_SIZE_SHIFT	2

+2 −2
Original line number Diff line number Diff line
@@ -1352,8 +1352,8 @@ static unsigned long aurora_range_end(unsigned long start, unsigned long end)
	 * since cache range operations stall the CPU pipeline
	 * until completion.
	 */
	if (end > start + MAX_RANGE_SIZE)
		end = start + MAX_RANGE_SIZE;
	if (end > start + AURORA_MAX_RANGE_SIZE)
		end = start + AURORA_MAX_RANGE_SIZE;

	/*
	 * Cache range operations can't straddle a page boundary.