[U-Boot] [PATCH] tqm834x.c: fix compiler warning

Fix:
tqm834x.c:299: warning: passing argument 1 of 'get_ram_size' discards qualifiers from pointer target type
Signed-off-by: Wolfgang Denk wd@denx.de Cc: Kim Phillips kim.phillips@freescale.com Cc: Kumar Gala galak@kernel.crashing.org --- board/tqc/tqm834x/tqm834x.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/board/tqc/tqm834x/tqm834x.c b/board/tqc/tqm834x/tqm834x.c index 2aa97f2..260e392 100644 --- a/board/tqc/tqm834x/tqm834x.c +++ b/board/tqc/tqm834x/tqm834x.c @@ -59,7 +59,7 @@ ulong flash_get_size (ulong base, int banknum);
/* Local functions */ static int detect_num_flash_banks(void); -static long int get_ddr_bank_size(short cs, volatile long *base); +static long int get_ddr_bank_size(short cs, long *base); static void set_cs_bounds(short cs, long base, long size); static void set_cs_config(short cs, long config); static void set_ddr_config(void); @@ -120,7 +120,7 @@ phys_size_t initdram (int board_type) debug("\nDetecting Bank%d\n", cs);
bank_size = get_ddr_bank_size(cs, - (volatile long*)(CONFIG_SYS_DDR_BASE + size)); + (long *)(CONFIG_SYS_DDR_BASE + size)); size += bank_size;
debug("DDR Bank%d size: %d MiB\n\n", cs, bank_size >> 20); @@ -262,7 +262,7 @@ static int detect_num_flash_banks(void) /************************************************************************* * Detect the size of a ddr bank. Sets CS bounds and CS config accordingly. */ -static long int get_ddr_bank_size(short cs, volatile long *base) +static long int get_ddr_bank_size(short cs, long *base) { /* This array lists all valid DDR SDRAM configurations, with * Bank sizes in bytes. (Refer to Table 9-27 in the MPC8349E RM).

On Jul 30, 2011, at 4:50 PM, Wolfgang Denk wrote:
Fix:
tqm834x.c:299: warning: passing argument 1 of 'get_ram_size' discards qualifiers from pointer target type
Signed-off-by: Wolfgang Denk wd@denx.de Cc: Kim Phillips kim.phillips@freescale.com Cc: Kumar Gala galak@kernel.crashing.org
board/tqc/tqm834x/tqm834x.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
Acked-by: Kumar Gala galak@kernel.crashing.org
- k

On Mon, 1 Aug 2011 10:13:39 -0500 Kumar Gala galak@kernel.crashing.org wrote:
On Jul 30, 2011, at 4:50 PM, Wolfgang Denk wrote:
Fix:
tqm834x.c:299: warning: passing argument 1 of 'get_ram_size' discards qualifiers from pointer target type
Signed-off-by: Wolfgang Denk wd@denx.de Cc: Kim Phillips kim.phillips@freescale.com Cc: Kumar Gala galak@kernel.crashing.org
board/tqc/tqm834x/tqm834x.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
Acked-by: Kumar Gala galak@kernel.crashing.org
applied.
Thanks,
Kim

WD, please pull:
The following changes since commit 33a6b9e90bfd56ed389f37470534eede0773cdd7:
environment.h: fix warning: "CONFIG_ENV_IS_EMBEDDED" redefined (2011-08-01 15:20:16 +0200)
are available in the git repository at: git://git.denx.de/u-boot-mpc83xx.git master
Wolfgang Denk (1): tqm834x.c: fix compiler warning
board/tqc/tqm834x/tqm834x.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
Thanks,
Kim

Dear Kim Phillips,
In message 20110802125317.13875095.kim.phillips@freescale.com you wrote:
WD, please pull:
The following changes since commit 33a6b9e90bfd56ed389f37470534eede0773cdd7:
environment.h: fix warning: "CONFIG_ENV_IS_EMBEDDED" redefined (2011-08-01 15:20:16 +0200)
are available in the git repository at: git://git.denx.de/u-boot-mpc83xx.git master
Wolfgang Denk (1): tqm834x.c: fix compiler warning
board/tqc/tqm834x/tqm834x.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
Applied, thanks.
Best regards,
Wolfgang Denk
participants (3)
-
Kim Phillips
-
Kumar Gala
-
Wolfgang Denk