aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/l2cap_core.c
diff options
context:
space:
mode:
authorJohan Hedberg <[email protected]>2014-07-18 08:15:26 +0000
committerMarcel Holtmann <[email protected]>2014-07-18 09:11:38 +0000
commitbeb19e4c079d626bf0502fbb65bd7c9891a10c2e (patch)
treee53da4ddea4887a8994aade8c415c6b3f976f8c8 /net/bluetooth/l2cap_core.c
parentBluetooth: Fix allowing initiating pairing when not pairable (diff)
downloadkernel-beb19e4c079d626bf0502fbb65bd7c9891a10c2e.tar.gz
kernel-beb19e4c079d626bf0502fbb65bd7c9891a10c2e.zip
Bluetooth: Use EOPNOTSUPP instead of ENOTSUPP
The EOPNOTSUPP and ENOTSUPP errors are very similar in meaning, but ENOTSUPP is a fairly new addition to POSIX. Not all libc versions know about the value the kernel uses for ENOTSUPP so it's better to use EOPNOTSUPP to ensure understandable error messages. Signed-off-by: Johan Hedberg <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
Diffstat (limited to 'net/bluetooth/l2cap_core.c')
-rw-r--r--net/bluetooth/l2cap_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index c8c259f21d80..f3fb61c9f96f 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -7094,7 +7094,7 @@ int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid,
break;
/* fall through */
default:
- err = -ENOTSUPP;
+ err = -EOPNOTSUPP;
goto done;
}