From: Marek Vasut Date: Fri, 6 May 2016 18:10:35 +0000 (+0200) Subject: mips: ath79: Fix compiler warning on const assignment X-Git-Tag: v2016.07-rc1~178^2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=43a092ffdd5edd6a66e8e9ec34372f3abd396486;p=u-boot mips: ath79: Fix compiler warning on const assignment The assignment const T var; var = value; is illegal, since var is constant. Drop the const to fix the compiler warning. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Wills Wang --- diff --git a/arch/mips/mach-ath79/reset.c b/arch/mips/mach-ath79/reset.c index 2ea2f8d3ac..ba38609a16 100644 --- a/arch/mips/mach-ath79/reset.c +++ b/arch/mips/mach-ath79/reset.c @@ -46,7 +46,7 @@ void _machine_restart(void) u32 get_bootstrap(void) { - const void __iomem *base; + void __iomem *base; u32 reg = 0; base = map_physmem(AR71XX_RESET_BASE, AR71XX_RESET_SIZE,