ARM: 6144/1: TCM memory bug freeing bug
authorLinus Walleij <linus.walleij@stericsson.com>
Wed, 26 May 2010 06:37:57 +0000 (07:37 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 27 May 2010 09:36:07 +0000 (10:36 +0100)
commitea208f646c8fb91c39c852e952fc911e1ad045ab
treebf4cd875b052996eb13dd30a66647334082b28a2
parent138de1c44a8e0606501cd8593407e9248e84f1b7
ARM: 6144/1: TCM memory bug freeing bug

This fixes a bug in mm/init.c when freeing the TCM compile memory,
this was being referred to as a char * which is incorrect: this
will dereference the pointer and feed in the value at the location
instead of the address to it. Change it to a plain char and use
&(char) to reference it.

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Cc: <stable@kernel.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/mm/init.c