mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
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 <marex@denx.de> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Wills Wang <wills.wang@live.com>
This commit is contained in:
parent
0a6767efab
commit
43a092ffdd
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue