commit | e6d619ea3dba6e2e60cce0e6e850e46a0d584b44 | [log] [tgz] |
---|---|---|
author | Robert Lubos <robert.lubos@nordicsemi.no> | Tue Oct 05 15:51:17 2021 +0200 |
committer | Anas Nashif <anas.nashif@intel.com> | Thu Nov 25 10:46:35 2021 -0500 |
tree | 78f4ba9815a1ccead99d6456abf5b851cae9380c | |
parent | 6dbd5c7876d3401f34bd83af8bc5c9b6f7e003da [diff] |
net: l2: ieee802154: Fix packed structure warning `struct ieee802154_mpdu` access generates warnings related to unaligned access to packed structure member. The structure itself however does not need to be packed, since it is not mapped directly into the frame buffer, but rather contains pointers to the structures representing corresponding header regions in the frame. Those structures are correctly defined as packed. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>