From: Peter Hurley Date: Wed, 24 Aug 2011 14:04:56 +0000 (-0400) Subject: Bluetooth: Add LE link type for debugfs output X-Git-Tag: v3.2-rc1~129^2~183^2~39^2~15 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=21061df3a2577b8d1feb1ca3cb51445085692e89;p=~emulex%2Finfiniband.git 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 Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index a6c3aa8be1f..22f1a6c8703 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"; }