From: Johan Hedberg Date: Wed, 9 Nov 2011 11:58:56 +0000 (+0200) Subject: Bluetooth: Fix consistency with u16 integer type in mgmt pending_cmd X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fc2f4b13d8c91713efb972be42566f7f3625f5ed;p=linux-beck.git 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 Acked-by: Marcel Holtmann Signed-off-by: Gustavo F. Padovan --- 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 @@ struct pending_cmd { struct list_head list; - __u16 opcode; + u16 opcode; int index; void *param; struct sock *sk;