Re: [RFC] Documentation about unaligned memory access

From: DM
Date: Mon Nov 26 2007 - 04:14:26 EST


On Nov 23, 2007 1:15 AM, Daniel Drake <dsd@xxxxxxxxxx> wrote:
[...]
>
> Before I do so, any comments on the following?
>
[...]
> void myfunc(u8 *data, u32 value)
> {
> [...]
> value = cpu_to_le32(value);
> memcpy(data, value, sizeof(value));
> [...]
> }

I suppose you mean:
memcpy(data, &value, sizeof(value));

/DM
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/