diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-26 06:04:52 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-27 05:34:39 -0500 |
commit | 816a11d5ced501d368fabe09172f3d62744e8b53 (patch) | |
tree | e4f3a0879ad41c7bc06b2e8f2b65a38502c44f4f /include | |
parent | 9b27f350688c9399da10c2b888c4044c2c1bd923 (diff) |
Bluetooth: Use kernel int types instead of ones from stdint.h
u8/__u8/u32/etc should be used in the kernel instead of stdint.h types.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/hci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 05bd9aca4054..0c54fcfe7e0f 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h | |||
@@ -691,8 +691,8 @@ struct hci_cp_host_buffer_size { | |||
691 | 691 | ||
692 | #define HCI_OP_WRITE_EIR 0x0c52 | 692 | #define HCI_OP_WRITE_EIR 0x0c52 |
693 | struct hci_cp_write_eir { | 693 | struct hci_cp_write_eir { |
694 | uint8_t fec; | 694 | __u8 fec; |
695 | uint8_t data[HCI_MAX_EIR_LENGTH]; | 695 | __u8 data[HCI_MAX_EIR_LENGTH]; |
696 | } __packed; | 696 | } __packed; |
697 | 697 | ||
698 | #define HCI_OP_READ_SSP_MODE 0x0c55 | 698 | #define HCI_OP_READ_SSP_MODE 0x0c55 |