aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_sysfs.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-07-08 13:57:15 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-28 18:01:28 -0700
commit0ac53939a06c610b394aeb0211b985804f2d2da3 (patch)
tree40e4b80f70a7cd42705e49a817950857055f2d1b /net/bluetooth/hci_sysfs.c
parent9c724357f432df5ddc83a62c8168414a604cd420 (diff)
downloadkernel_samsung_smdk4412-0ac53939a06c610b394aeb0211b985804f2d2da3.zip
kernel_samsung_smdk4412-0ac53939a06c610b394aeb0211b985804f2d2da3.tar.gz
kernel_samsung_smdk4412-0ac53939a06c610b394aeb0211b985804f2d2da3.tar.bz2
[Bluetooth] Add HCI device identifier for SDIO cards
This patch assigns the next free HCI device identifier to Bluetooth devices based on the SDIO interface. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_sysfs.c')
-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 58df436..09c6161 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -16,7 +16,7 @@
static inline char *typetostr(int type)
{
switch (type) {
- case HCI_VHCI:
+ case HCI_VIRTUAL:
return "VIRTUAL";
case HCI_USB:
return "USB";
@@ -28,6 +28,8 @@ static inline char *typetostr(int type)
return "RS232";
case HCI_PCI:
return "PCI";
+ case HCI_SDIO:
+ return "SDIO";
default:
return "UNKNOWN";
}