aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hci_sysfs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index 58df4360d242..09c61615e961 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -16,7 +16,7 @@
16static inline char *typetostr(int type) 16static inline char *typetostr(int type)
17{ 17{
18 switch (type) { 18 switch (type) {
19 case HCI_VHCI: 19 case HCI_VIRTUAL:
20 return "VIRTUAL"; 20 return "VIRTUAL";
21 case HCI_USB: 21 case HCI_USB:
22 return "USB"; 22 return "USB";
@@ -28,6 +28,8 @@ static inline char *typetostr(int type)
28 return "RS232"; 28 return "RS232";
29 case HCI_PCI: 29 case HCI_PCI:
30 return "PCI"; 30 return "PCI";
31 case HCI_SDIO:
32 return "SDIO";
31 default: 33 default:
32 return "UNKNOWN"; 34 return "UNKNOWN";
33 } 35 }