diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2014-02-01 03:42:18 +0100 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2014-02-13 08:51:43 +0100 |
commit | 03c515d7486b7a519728340d4b04baaad16bf806 (patch) | |
tree | 46faad624d0cff88f1d9ddb55f9b94d4d7f56d2b /include | |
parent | Bluetooth: Rename authentication to key_type in mgmt_ltk_info (diff) | |
download | linux-03c515d7486b7a519728340d4b04baaad16bf806.tar.xz linux-03c515d7486b7a519728340d4b04baaad16bf806.zip |
Bluetooth: Remove __packed from struct smp_ltk
The struct smp_ltk does not need to be packed and so remove __packed.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 6854384b1f25..4e878780fa01 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -101,7 +101,7 @@ struct smp_ltk { __le16 ediv; u8 rand[8]; u8 val[16]; -} __packed; +}; struct link_key { struct list_head list; |