2011-08-24 14:04:56

by Peter Hurley

[permalink] [raw]
Subject: [RFC 1/4] Bluetooth: Add LE link type for debugfs output

Add LE link type as known connection type for debugfs stringizing
output.
---
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 a6c3aa8..22f1a6c 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";
}
--
1.7.4.1



2011-09-02 17:45:59

by Gustavo Padovan

[permalink] [raw]
Subject: Re: [RFC 1/4] Bluetooth: Add LE link type for debugfs output

Hi Peter,

* Peter Hurley <[email protected]> [2011-08-24 10:04:56 -0400]:

> Add LE link type as known connection type for debugfs stringizing
> output.
> ---
> net/bluetooth/hci_sysfs.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)

Applied, thanks.

Gustavo