diff mbox

[U-Boot,3/3] common/cmd_bdinfo.c: fix do_bdinfo() for AVR32

Message ID 1297260631-13864-4-git-send-email-biessmann@corscience.de
State Accepted
Delegated to: Wolfgang Denk
Headers show

Commit Message

Andreas Bießmann Feb. 9, 2011, 2:10 p.m. UTC
This patch fixes following warning message:

---8<---
cmd_bdinfo.c:458: warning: initialization from incompatible pointer type
--->8---

There was a prototype change in 54841ab50c20d6fa6c9cc3eb826989da3a22d934 for
argv[] pointer type to const. This change was not made for AVR32 cause this
code came in later by a merge.

Signed-off-by: Andreas Bießmann <biessmann@corscience.de>
---
 common/cmd_bdinfo.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Wolfgang Denk April 12, 2011, 7:46 p.m. UTC | #1
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=,

In message <1297260631-13864-4-git-send-email-biessmann@corscience.de> you wrote:
> This patch fixes following warning message:
> 
> ---8<---
> cmd_bdinfo.c:458: warning: initialization from incompatible pointer type
> --->8---
> 
> There was a prototype change in 54841ab50c20d6fa6c9cc3eb826989da3a22d934 for
> argv[] pointer type to const. This change was not made for AVR32 cause this
> code came in later by a merge.
> 
> Signed-off-by: Andreas Bießmann <biessmann@corscience.de>
> ---
>  common/cmd_bdinfo.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c
index bba7374..1d76ffa 100644
--- a/common/cmd_bdinfo.c
+++ b/common/cmd_bdinfo.c
@@ -304,7 +304,7 @@  int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 
 #elif defined(CONFIG_AVR32)
 
-int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
 	bd_t *bd = gd->bd;