aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/l2cap_core.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index fc92fe341115..3ed93938370a 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -4528,12 +4528,12 @@ static void l2cap_do_create(struct l2cap_chan *chan, int result,
4528 /* Incoming channel on AMP */ 4528 /* Incoming channel on AMP */
4529 if (result == L2CAP_CR_SUCCESS) { 4529 if (result == L2CAP_CR_SUCCESS) {
4530 /* Send successful response */ 4530 /* Send successful response */
4531 rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS); 4531 rsp.result = __constant_cpu_to_le16(L2CAP_CR_SUCCESS);
4532 rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO); 4532 rsp.status = __constant_cpu_to_le16(L2CAP_CS_NO_INFO);
4533 } else { 4533 } else {
4534 /* Send negative response */ 4534 /* Send negative response */
4535 rsp.result = cpu_to_le16(L2CAP_CR_NO_MEM); 4535 rsp.result = __constant_cpu_to_le16(L2CAP_CR_NO_MEM);
4536 rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO); 4536 rsp.status = __constant_cpu_to_le16(L2CAP_CS_NO_INFO);
4537 } 4537 }
4538 4538
4539 l2cap_send_cmd(chan->conn, chan->ident, L2CAP_CREATE_CHAN_RSP, 4539 l2cap_send_cmd(chan->conn, chan->ident, L2CAP_CREATE_CHAN_RSP,