]> git.ipfire.org Git - people/ms/u-boot.git/commit - common/board_f.c
common/board_f: implement type casting for gd structure
authorAlexey Brodkin <Alexey.Brodkin@synopsys.com>
Wed, 25 Feb 2015 14:59:02 +0000 (17:59 +0300)
committerTom Rini <trini@konsulko.com>
Fri, 6 Mar 2015 01:50:29 +0000 (20:50 -0500)
commit7bf9f20d0246e0985c5c06bb56b3e9ce9300fcde
tree220ae47d7a845d5bdefa161077dc0c58993d2c29
parentbc55c07a2bc8435d427707d96b3b08fe1fa00198
common/board_f: implement type casting for gd structure

In case of global data structure defined as "register volatile" compiler
throws an warning about incorrect type used:
 --->8---
 common/board_f.c: In function "board_init_f_r":
 common/board_f.c:1073:2: warning: passing argument 1 of "&board_init_r
 +(sizetype)gd->reloc_off" discards "volatile" qualifier from pointer
 target type [enabled by default]
  (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
  ^
 common/board_f.c:1073:2: note: expected "struct gd_t *" but argument is
 of type "volatile struct gd_t *"
 --->8---

An obvious fix is manual casting to "gd_t *".

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
common/board_f.c