Dear Dirk Behme,

> On 31.03.2012 20:35, Marek Vasut wrote:
> > Dear Dirk Behme,
> > 
> >> Fix the warning
> >> 
> >> mmc.c: In function 'mmc_send_cmd':
> >> mmc.c:87: warning: assignment from incompatible pointer type
> >> 
> >> in case CONFIG_MMC_TRACE is enabled.
> >> 
> >> Signed-off-by: Dirk Behme <dirk.be...@de.bosch.com>
> >> CC: Andy Fleming <aflem...@freescale.com>

I'd be glad to see it in ... Andy?

> >> ---
> > 
> > Acked-by: Marek Vasut <ma...@denx.de>
> > 
>  > Acked-by: Simon Glass <s...@chromium.org>
>  > 
> >>  drivers/mmc/mmc.c |    2 +-
> >>  1 files changed, 1 insertions(+), 1 deletions(-)
> >> 
> >> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
> >> index 21665ec..881b5c0 100644
> >> --- a/drivers/mmc/mmc.c
> >> +++ b/drivers/mmc/mmc.c
> >> @@ -84,7 +84,7 @@ int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
> >> struct mmc_data *data) for (i = 0; i < 4; i++) {
> >> 
> >>                            int j;
> >>                            printf("\t\t\t\t\t%03d - ", i*4);
> >> 
> >> -                          ptr = &cmd->response[i];
> >> +                          ptr = (u8 *)&cmd->response[i];
> >> 
> >>                            ptr += 3;
> >>                            for (j = 0; j < 4; j++)
> >>                            
> >>                                    printf("%02X ", *ptr--);
> 
> Who could help to still get this into 2012.04?
> 
> Many thanks,
> 
> Dirk

Best regards,
Marek Vasut
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to