diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-07-03 05:55:33 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-07-17 17:11:53 +0200 | 
| commit | a55d23ccf6cb90acb9667a46427670add9486aec (patch) | |
| tree | 8662c1e65afc4e07d89914b742ebbdef0b0ff49c /include/common.h | |
| parent | 930f335592ceba963122122429ab26d94f165cab (diff) | |
| download | olio-uboot-2014.01-a55d23ccf6cb90acb9667a46427670add9486aec.tar.xz olio-uboot-2014.01-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 'include/common.h')
| -rw-r--r-- | include/common.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/common.h b/include/common.h index 2c8513ae1..c5d2dcedf 100644 --- a/include/common.h +++ b/include/common.h @@ -317,7 +317,7 @@ const char *symbol_lookup(unsigned long addr, unsigned long *caddr);  void	api_init (void);  /* common/memsize.c */ -long	get_ram_size  (volatile long *, long); +long	get_ram_size  (long *, long);  /* $(BOARD)/$(BOARD).c */  void	reset_phy     (void); |