diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2011-11-09 06:58:56 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-11-09 09:48:39 -0500 |
commit | fc2f4b13d8c91713efb972be42566f7f3625f5ed (patch) | |
tree | 7769d00b479d512e765c251d5603edd4705ce825 /net | |
parent | e0f9309f371096b82ad35aa2c27d7f848f37e696 (diff) |
Bluetooth: Fix consistency with u16 integer type in mgmt pending_cmd
For consistency the integer type should be u16 and not __u16.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 263fa2745d48..a849428ffbcb 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -36,7 +36,7 @@ | |||
36 | 36 | ||
37 | struct pending_cmd { | 37 | struct pending_cmd { |
38 | struct list_head list; | 38 | struct list_head list; |
39 | __u16 opcode; | 39 | u16 opcode; |
40 | int index; | 40 | int index; |
41 | void *param; | 41 | void *param; |
42 | struct sock *sk; | 42 | struct sock *sk; |