diff mbox

arch: remove incorrect condition for endian definition on SuperH

Message ID 1391523034-7624-1-git-send-email-thomas.petazzoni@free-electrons.com
State Accepted
Commit dd712eb31cd041eb51c2731a0cdf0422681bb67d
Headers show

Commit Message

Thomas Petazzoni Feb. 4, 2014, 2:10 p.m. UTC
Probably due to some copy/paste mistake, Config.in.sh was defining
BR2_ENDIAN to "LITTLE" when the architecture is BR2_x86_64. Due to the
fact that Config.in.sh is never included when we are building for
x86_64, this is a no-op, but is certainly good to clean up.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 arch/Config.in.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard Feb. 4, 2014, 2:15 p.m. UTC | #1
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Probably due to some copy/paste mistake, Config.in.sh was defining
 > BR2_ENDIAN to "LITTLE" when the architecture is BR2_x86_64. Due to the
 > fact that Config.in.sh is never included when we are building for
 > x86_64, this is a no-op, but is certainly good to clean up.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed, thanks.
diff mbox

Patch

diff --git a/arch/Config.in.sh b/arch/Config.in.sh
index cf70fd5..10d4ef6 100644
--- a/arch/Config.in.sh
+++ b/arch/Config.in.sh
@@ -36,6 +36,6 @@  config BR2_ARCH
 
 config BR2_ENDIAN
 	default "LITTLE"	if BR2_sh3 || BR2_sh4 || BR2_sh4a || \
-				   BR2_x86_64 || BR2_sh64
+				   BR2_sh64
 	default "BIG"		if BR2_sh2 || BR2_sh2a || BR2_sh3eb || \
 				   BR2_sh4eb || BR2_sh4aeb