diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2012-03-06 21:45:42 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2012-03-06 22:04:24 -0500 |
commit | 044e1247344d7ff0dbdb1e7edd80d859a8c19aa6 (patch) | |
tree | db93188e2fc22ddd9525cccddfba792fb5ce37b1 /include/net | |
parent | c4762507342dabbe6896ef288df0851ac7dd63d6 (diff) |
Bluetooth: Use correct type for userspace exported structs
It should be __u8 instead of u8.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 61953dc848a6..ffc1377e092e 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -163,9 +163,9 @@ struct mgmt_cp_remove_uuid { | |||
163 | 163 | ||
164 | struct mgmt_link_key_info { | 164 | struct mgmt_link_key_info { |
165 | struct mgmt_addr_info addr; | 165 | struct mgmt_addr_info addr; |
166 | u8 type; | 166 | __u8 type; |
167 | u8 val[16]; | 167 | __u8 val[16]; |
168 | u8 pin_len; | 168 | __u8 pin_len; |
169 | } __packed; | 169 | } __packed; |
170 | 170 | ||
171 | #define MGMT_OP_LOAD_LINK_KEYS 0x0012 | 171 | #define MGMT_OP_LOAD_LINK_KEYS 0x0012 |