summaryrefslogtreecommitdiffstats
path: root/common/memsize.c
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 /common/memsize.c
parent930f335592ceba963122122429ab26d94f165cab (diff)
downloadtalos-obmc-uboot-a55d23ccf6cb90acb9667a46427670add9486aec.tar.gz
talos-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 'common/memsize.c')
-rw-r--r--common/memsize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memsize.c b/common/memsize.c
index 6c275c9b25..963e4f35b1 100644
--- a/common/memsize.c
+++ b/common/memsize.c
@@ -37,7 +37,7 @@
* the actually available RAM size between addresses `base' and
* `base + maxsize'.
*/
-long get_ram_size(volatile long *base, long maxsize)
+long get_ram_size(long *base, long maxsize)
{
volatile long *addr;
long save[32];
OpenPOWER on IntegriCloud