From: Michal MalĂ˝ Date: Tue, 11 Aug 2015 22:45:24 +0000 (+0200) Subject: Extend user data in klgd_command struct by a union of either two u32 or X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=7ab2bfeff4ab906e6fca884dd7ce10d6dde66b8f;p=KLGD.git Extend user data in klgd_command struct by a union of either two u32 or a pointer to arbitrary data. --- diff --git a/klgd.h b/klgd.h index 4716d98..3a3c0d4 100644 --- a/klgd.h +++ b/klgd.h @@ -4,13 +4,17 @@ * @bytes: Payload * @length: Number of bytes * @user: Arbitrary data that are not to be sent to the device. - * This data will not be free'd automatically when the command - * stream gets disposed of. + * Note that any data pointed to by the ptr will not + * be free'd automatically when the command stream gets + * disposed of. */ struct klgd_command { __u8 * const bytes; size_t length; - void *user; + union { + u32 data[2]; + void *ptr; + } user; }; struct klgd_command_stream {