[U-Boot] [PATCH v2 01/22] mkimage: Add OMAP boot image support
Aneesh V
aneesh at ti.com
Mon May 16 12:28:40 CEST 2011
Hi Mike,
On Monday 16 May 2011 08:25 AM, Mike Frysinger wrote:
> On Sunday, May 15, 2011 21:52:53 Mike Frysinger wrote:
>> On Sunday, May 15, 2011 11:21:19 Aneesh V wrote:
>>> +static void omapimage_print_header(const void *ptr)
>>> +{
>>> + struct ch_toc *toc = (struct ch_toc *)ptr;
>>
>> you're casting away the void. something is fundamentally broken here.
>
> err, obviously i meant "const" instead of "void" ...
> -mike
This is not my code. But I don't think it was intentional. The
following didn't seem to cause any trouble. I shall add this fix in the
next revision if this looks ok.
static void omapimage_print_header(const void *ptr)
{
- struct ch_toc *toc = (struct ch_toc *)ptr;
+ const struct ch_toc *toc = (const struct ch_toc *)ptr;
>
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
More information about the U-Boot
mailing list