summaryrefslogtreecommitdiffstats
path: root/board/eukrea
diff options
context:
space:
mode:
authorAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-07-03 05:55:33 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-07-17 17:11:53 +0200
commita55d23ccf6cb90acb9667a46427670add9486aec (patch)
tree8662c1e65afc4e07d89914b742ebbdef0b0ff49c /board/eukrea
parent930f335592ceba963122122429ab26d94f165cab (diff)
downloadblackbird-obmc-uboot-a55d23ccf6cb90acb9667a46427670add9486aec.tar.gz
blackbird-obmc-uboot-a55d23ccf6cb90acb9667a46427670add9486aec.zip
Remove volatile qualifier in get_ram_size() calls
Checkpatch.pl complains about the volatile qualifier in calls to get_ram_size(). Remove this qualifier in the prototype and in the calls where it is useless, and leave it only in the function body where it is needed. Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'board/eukrea')
-rw-r--r--board/eukrea/cpu9260/cpu9260.c2
-rw-r--r--board/eukrea/cpuat91/cpuat91.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/board/eukrea/cpu9260/cpu9260.c b/board/eukrea/cpu9260/cpu9260.c
index 0959c5cdb9..402f19ff8b 100644
--- a/board/eukrea/cpu9260/cpu9260.c
+++ b/board/eukrea/cpu9260/cpu9260.c
@@ -174,7 +174,7 @@ int board_init(void)
int dram_init(void)
{
- gd->ram_size = get_ram_size((volatile long *)CONFIG_SYS_SDRAM_BASE,
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
CONFIG_SYS_SDRAM_SIZE);
return 0;
}
diff --git a/board/eukrea/cpuat91/cpuat91.c b/board/eukrea/cpuat91/cpuat91.c
index 5d05414841..f654f87b72 100644
--- a/board/eukrea/cpuat91/cpuat91.c
+++ b/board/eukrea/cpuat91/cpuat91.c
@@ -63,7 +63,7 @@ int board_early_init_f(void)
int dram_init(void)
{
/* dram_init must store complete ramsize in gd->ram_size */
- gd->ram_size = get_ram_size((volatile long *)CONFIG_SYS_SDRAM_BASE,
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
CONFIG_SYS_SDRAM_SIZE);
return 0;
}
OpenPOWER on IntegriCloud