ARM: constify machine_desc structure uses
authorRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 26 Jul 2013 13:55:59 +0000 (14:55 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 26 Jul 2013 13:55:59 +0000 (14:55 +0100)
struct machine_desc records are defined everywhere as a 'const'
structure, but unfortuantely it loses its const-ness through the use of
linker magic - the symbols which surround the section are not declared
const so it becomes possible not to use 'const' for pointers to these
const structures.

Let's fix this oversight - all pointers to these structures should be
marked const too.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

No differences found