diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2011-08-24 10:04:56 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-09-21 12:58:12 -0300 |
commit | 21061df3a2577b8d1feb1ca3cb51445085692e89 (patch) | |
tree | 96593830026ef12792dea34a11668bab53c74c4e /net/bluetooth | |
parent | f6422ec624a19ba144b4b5cdbbc5ee41cc6f6400 (diff) | |
download | blackbird-op-linux-21061df3a2577b8d1feb1ca3cb51445085692e89.tar.gz blackbird-op-linux-21061df3a2577b8d1feb1ca3cb51445085692e89.zip |
Bluetooth: Add LE link type for debugfs output
Add LE link type as known connection type for debugfs stringizing
output.
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_sysfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index a6c3aa8be1f7..22f1a6c87035 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c @@ -23,6 +23,8 @@ static inline char *link_typetostr(int type) return "SCO"; case ESCO_LINK: return "eSCO"; + case LE_LINK: + return "LE"; default: return "UNKNOWN"; } |